-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "calorie-tracker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js",
"kill": "fuser -k 5000/tcp",
"server": "npm run dev",
"client": "cd client && npm start",
"test": "cross-env NODE_ENV=test jest",
"kill-run": "npm run kill && npm run server",
"start": "cross-env NODE_ENV=production node ./server/index.js",
"heroku-postbuild": "NODE_ENV=production cd client && npm install && npm run build",
"build:db": "NODE_ENV=test node server/database/config",
"lint-fix": "eslint server/ --fix",
"lint": "eslint server/",
"lint-react": "cd client && npm run lint"
},
"pre-commit": [
"test",
"lint-fix"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G9/calorie-tracker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G9/calorie-tracker/issues"
},
"homepage": "https://github.com/GSG-G9/calorie-tracker#readme",
"dependencies": {
"@hapi/boom": "^9.1.1",
"@material-ui/core": "^4.11.3",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"boom": "^7.3.0",
"compression": "^1.7.4",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"supertest": "^6.1.3"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.0",
"nodemon": "^2.0.7",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
},
"proxy": "http://localhost:5000"
}