-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 952 Bytes
/
package.json
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
30
31
32
33
34
{
"name": "@wuspy/asteroids",
"author": "Jacob Jordan",
"license": "MIT",
"private": true,
"engines": {
"node": ">= 18",
"npm": ">= 8"
},
"devDependencies": {
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"rimraf": "^5.0.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"scripts": {
"lint": "npm run lint --workspaces",
"dev:web": "npm run dev -w web",
"dev:api": "npm run dev -w api",
"build:web": "npm run build -w web",
"build:api": "npm run build -w api",
"clean:dependencies": "rimraf node_modules",
"clean:build": "npm run clean --workspaces",
"clean": "npm run clean:dependencies && npm run clean:build"
},
"workspaces": [
"api",
"core",
"web"
]
}