forked from meaghanlewis/stickerfy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.33 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
{
"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": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.13.2",
"chai-http": "^4.0.0",
"chromedriver": "^2.40.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.2.0",
"cookie-parser": "~1.3.5",
"csurf": "^1.8.3",
"debug": "~2.2.0",
"express": "~4.13.1",
"express-handlebars": "^3.0.0",
"express-session": "^1.13.0",
"express-validator": "^2.20.5",
"hbs": "~3.1.0",
"mongoose": "^4.4.16",
"morgan": "~1.6.1",
"passport-local": "^1.0.0",
"selenium-webdriver": "^4.0.0-alpha.1",
"serve-favicon": "~2.3.0",
"stripe": "^4.7.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^5.2.0",
"mocha-mongoose": "^1.2.0",
"nodemon": "^1.11.0",
"nyc": "^12.0.2"
}
}