-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
35
36
37
38
39
40
41
42
{
"name": "react-battleship",
"private": true,
"workspaces": [
"client",
"server",
"types"
],
"version": "0.0.0",
"description": "R3F + WebSocket battleship game",
"repository": "https://github.com/mayacoda/react-battleship",
"author": "Maya Nedeljković Batić",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development concurrently \"pnpm dev:client\" \"pnpm dev:server\"",
"dev:client": "cd client && pnpm dev",
"dev:server": "cd server && pnpm dev",
"build": "NODE_ENV=production pnpm build:types && pnpm build:client && pnpm build:server",
"build:client": "cd client && pnpm build",
"build:server": "cd server && pnpm build",
"build:types": "cd types && pnpm build",
"test": "echo \"No Tests Implemented\"",
"start": "cd server && pnpm start",
"preview": "NODE_ENV=production pnpm build && pnpm start",
"postinstall": "pnpm build"
},
"devDependencies": {
"concurrently": "^7.3.0",
"cross-env": "^7.0.3",
"prettier-plugin-glsl": "^0.0.5",
"husky": "^8.0.3",
"lint-staged": "^15.0.2"
},
"type": "module",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": "19.7.0",
"pnpm": "8.11.0"
}
}