-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.02 KB
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
{
"name": "node-commerce",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"auth.login.test": "mocha 'tests/auth/login.test.js'",
"auth.logout.test": "mocha 'tests/auth/logout.test.js'",
"auth.register.test": "mocha 'tests/auth/register.test.js'",
"account.address.test": "mocha 'tests/account/address.test.js'",
"account.favorite.test": "mocha 'tests/account/favorite.test.js'",
"checkout.payment.test": "mocha 'tests/checkout/payment.test.js'",
"checkout.cart.test": "mocha 'tests/checkout/cart.test.js'"
},
"dependencies": {
"connect-mongo": "^3.0.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"express-session": "^1.16.2",
"http-errors": "~1.6.2",
"jade": "~1.11.0",
"language-translator": "^1.2.5",
"mongodb": "^3.3.0-beta2",
"morgan": "~1.9.0",
"express-swagger-generator": "^1.1.15"
},
"devDependencies": {
"mocha": "^6.2.0",
"should": "^13.2.3",
"supertest": "^4.0.2"
}
}