-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 KB
/
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": "space-station-tracker",
"version": "1.2.2",
"main": "dist/server/index.js",
"private": true,
"devDependencies": {
"concurrently": "^9.0.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"typescript": "^5.2.2"
},
"scripts": {
"build": "npm run compile --workspace=server && npm run build --workspace=web",
"dev": "concurrently --prefix \"[{name}]\" --names \"SERVER,WEB\" -c \"bgMagenta.bold,bgBlue.bold,bgGreen.bold\" \"npm run dev:server\" \"npm run dev:web\"",
"dev:server": "npm run dev --workspace=server",
"dev:web": "npm run dev --workspace=web",
"format": "prettier --write .",
"lint": "prettier --check .",
"prepare": "node ./.husky/install.mjs",
"start": "npm run start --workspace=server",
"test": "npm run test:ci --workspace=server && npm run test:ci --workspace=web"
},
"engines": {
"node": ">=22.10.0",
"npm": ">=10.9.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
},
"workspaces": [
"server",
"web"
]
}