-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 920 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
{
"name": "tinywars-online",
"private": true,
"version": "1.0.0",
"engines": {
"node": ">=16 <18"
},
"workspaces": [
"./workspaces/frontend",
"./workspaces/backend"
],
"scripts": {
"prod": "npm -w backend run prod",
"lint": "eslint ./workspaces --ext .ts",
"lint:fix": "eslint ./workspaces --fix --ext .ts",
"build:all": "npm run build --workspaces --if-present",
"typecheck:all": "npm run typecheck --workspaces --if-present",
"test:all": "npm run test:all --workspaces --if-present",
"release:major": "npm version major && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:patch": "npm version patch && git push && git push --tags"
},
"devDependencies": {
"eslint": "^8.13.0",
"typescript": "^4.5.4"
}
}