-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 944 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "space-invaders",
"private": true,
"type": "module",
"workspaces": ["packages/*", "server", "client"],
"scripts": {
"dev": "npm run dev:server & npm run dev:client",
"dev:server": "npm run dev --workspace=server",
"dev:client": "npm run dev --workspace=client",
"build": "npm run build --workspace=packages/shared && npm run build --workspace=server && npm run build --workspace=client",
"typecheck": "npm run typecheck --workspace=packages/shared && npm run typecheck --workspace=server && npm run typecheck --workspace=client",
"clean": "rm -rf packages/shared/dist server/dist client/dist",
"check": "npm run typecheck && npm run build"
},
"devDependencies": {
"typescript": "^5.4.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^9.0.0"
}
}