-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "bills-sys",
"version": "1.0.0",
"description": "",
"main": "index.js",
"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 GENERATE_SOURCEMAP=false cd client && npm run build",
"install": "npm run init",
"kill": "fuser -k 5000/tcp",
"kill-run": "npm run kill && npm run server",
"build:db": "node ./server/src/config/dbBuild.js && cross-env NODE_ENV=test node ./server/src/config/dbBuild.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G8/bills-sys.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G8/bills-sys/issues"
},
"homepage": "https://github.com/GSG-G8/bills-sys#readme",
"devDependencies": {
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint-fix",
"build:db",
"test"
],
"dependencies": {
"cross-env": "^7.0.2"
}
}