-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
41
42
{
"name": "palb",
"version": "1.0.0",
"description": "This is week 8 project",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node server/index.js",
"dev": "nodemon server/index.js",
"test": "NODE_ENV=test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G8/PalB.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G8/PalB/issues"
},
"homepage": "https://github.com/GSG-G8/PalB#readme",
"dependencies": {
"@hapi/joi": "^17.1.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"crypto": "^1.0.1",
"env2": "^2.2.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.18.2",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}