-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "shopping-cart",
"version": "0.0.2",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "mocha --recursive --exit test/unit/cart.spec.js test/integration/order.spec.js",
"unit-test": "mocha --recursive test/unit/cart.spec.js",
"integration-test": "mocha --recursive --exit test/integration/order.spec.js",
"ui-test": "mocha --recursive --timeout 10000 test/ui/checkout.spec.js",
"test-coverage": "nyc mocha --recursive --exit test/unit/cart.spec.js test/integration/order.spec.js"
},
"engines": {
"node": "8.11.3"
},
"dependencies": {
"@handlebars/allow-prototype-access": "^1.0.5",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.1",
"chai-http": "^4.3.0",
"chromedriver": "^104.0.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.6.0",
"cookie-parser": "~1.3.5",
"csurf": "^1.11.0",
"debug": "^4.3.3",
"express": "^4.17.2",
"express-handlebars": "^5.3.1",
"express-session": "^1.17.2",
"express-validator": "^6.14.0",
"fresh": "^0.5.2",
"handlebars": "^4.7.7",
"hbs": "^4.2.0",
"lodash": "^4.17.21",
"mime": "^2.6.0",
"mongodb": "^4.2.2",
"mongoose": "^6.5.1",
"morgan": "^1.10.0",
"negotiator": "^0.6.2",
"passport-local": "^1.0.0",
"selenium-webdriver": "^4.3.1",
"serve-favicon": "^2.5.0",
"stripe": "^11.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^9.1.3",
"mocha-mongoose": "^1.2.0",
"nodemon": "^2.0.15",
"nyc": "^15.1.0"
}
}