-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 988 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "@repo/client",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "main.tsx",
"scripts": {
"analyze": "VITE_ANALYZE=1 vite build",
"dev": "vite",
"test": "vitest",
"build": "vite build",
"tsc:build:css": "tcm src",
"tsc:app": "tsc --noEmit --project tsconfig.app.json",
"tsc:tools": "tsc --noEmit --project tsconfig.tools.json",
"tsc": "echo \"done\"",
"lint": "eslint . --config ../.eslintrc.json",
"lint:fix": "eslint . --config ../.eslintrc.json --fix",
"format": "prettier --check . --config ../.prettierrc --log-level warn",
"format:fix": "prettier --write . --config ../.prettierrc --log-level warn",
"clear": "rm -rf node_modules; rm -rf .turbo; rm public/sw.js; rm public/sw.js.map; find src -name '*.module.css.d.ts' -type f -delete"
},
"dependencies": {
"@repo/assets": "workspace:@repo/assets@*",
"@repo/shared": "workspace:@repo/shared@*"
},
"devDependencies": {
"@repo/script": "workspace:@repo/script@*"
}
}