-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 893 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
{
"name": "penny-stocks",
"version": "1.0.0",
"description": "A game about trading colours.",
"author": "Pierre-Marc Airoldi",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/pmairoldi/penny-stocks.git"
},
"scripts": {
"prepare": "husky install",
"install": "npm run install:client && npm run install:server",
"install:client": "cd ./projects/client && npm install",
"start:client": "cd ./projects/client && npm start",
"install:server": "cd ./projects/server && npm install",
"start:server": "cd ./projects/server && npm start",
"start:server:debug": "cd ./projects/server && npm run start:debug"
},
"devDependencies": {
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}