-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "cool-darts-web",
"version": "1.0.0",
"main": "server/index.js",
"repository": "https://github.com/cadichris/cool-darts-web.git",
"author": "Christophe Cadilhac",
"license": "MIT",
"scripts": {
"postinstall": "YARN_PRODUCTION=false yarn --cwd client install",
"heroku-postbuild": "yarn --cwd client build",
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"test": "jest ./server",
"heroku-local": "yarn --cwd client build && heroku local web",
"prepare": "husky install"
},
"dependencies": {
"@sentry/node": "^6.16.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-ws": "^5.0.2",
"nodemon": "^2.0.15",
"pg": "^8.7.1",
"pg-format": "^1.0.4"
},
"engines": {
"node": "16.x"
},
"devDependencies": {
"husky": ">=6",
"jest": "^27.4.3",
"lint-staged": ">=10",
"prettier": "2.5.0",
"supertest": "^6.1.6"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}