-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 639 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"private": true,
"workspaces": [
"./packages/*"
],
"scripts": {
"build:ts": "tsc --build tsconfig.all.json",
"build:clean": "bash -c \"find {apps,packages} -path '*node_modules*' -prune -o -name 'dist' -type d -exec rm -rf {} +\"",
"dev:ts": "yarn build:ts --watch"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@8.7.6"
}