-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "room-booker",
"version": "1.0.0",
"scripts": {
"server": "cd server && cross-env NODE_ENV=development npm run dev",
"client": "cd client && npm start",
"init": "cd client && npm i && cd ../server && npm i",
"lint-fix": "cd client && npm run lint-fix && cd ../server && npm run lint-fix",
"test": "cd server && cross-env NODE_ENV=test npm t",
"start": "cross-env NODE_ENV=production node ./server/src",
"heroku-postbuild": "NODE_ENV=production cd client && npm install && npm run build",
"build:db": "NODE_ENV=test node server/src/database/config/build.js",
"install": "npm run init",
"kill": "fuser -k 5000/tcp",
"kill-run": "npm run kill && npm run server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G8/room-booker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G8/room-booker/issues"
},
"homepage": "https://github.com/GSG-G8/room-booker#readme",
"devDependencies": {
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint-fix",
"test"
],
"dependencies": {
"cross-env": "^7.0.2"
}
}