-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 873 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 873 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
{
"name": "app-template",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently --kill-others-on-fail \"npm run dev --workspace=packages/client\" \"npm run dev --workspace=packages/server\"",
"build": "npm run build --workspace=packages/client && npm run build --workspace=packages/server",
"lint": "npm run lint --workspaces --if-present",
"test:client": "npm run test --workspace=packages/client",
"test:server": "npm run test --workspace=packages/server"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"concurrently": "^8.2.2",
"eslint": "^8.43.0",
"eslint-import-resolver-typescript": "^3.8.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^7.0.1"
}
}