-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "node_bootcamp",
"version": "1.0.0",
"description": "Top Gun Lab",
"main": "index.js",
"scripts": {
"test": "SET DEBUG=app: * && c8 ava tests/* --verbose",
"debug": "node inspect index.js",
"dev": "nodemon index.js",
"prod": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JuanMontoyaP/Node_Bootcamp.git"
},
"author": "Juan Montoya",
"license": "MIT",
"bugs": {
"url": "https://github.com/JuanMontoyaP/Node_Bootcamp/issues"
},
"homepage": "https://github.com/JuanMontoyaP/Node_Bootcamp#readme",
"dependencies": {
"@hapi/boom": "^10.0.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"helmet": "^5.1.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.3"
},
"devDependencies": {
"ava": "^4.3.1",
"c8": "^7.12.0",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"proxyquire": "^2.1.3",
"sinon": "^14.0.0",
"supertest": "^6.2.4"
}
}