-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 849 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 849 Bytes
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
{
"name": "pricebin-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"swagger-docs": "node ./documentation/swagger.js",
"test_server": "TEST=true node ./bin/www",
"mochatest": "./node_modules/mocha/bin/mocha.js"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"async": "^3.2.3",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"express": "~4.16.1",
"firebase-admin": "^10.0.2",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"mongoose": "^6.2.9",
"morgan": "~1.9.1",
"swagger-autogen": "^2.21.0",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"nodemon": "^2.0.15"
}
}