-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "contacts-manager",
"version": "0.0.1",
"private": true,
"main": "app.js",
"scripts": {
"start": "node app.js",
"debug": "nodemon --inspect=0.0.0.0:9229 app.js -e js,vue",
"test": "NODE_ENV=test mocha --recursive test",
"test:coverage": "nyc npm test",
"test:unit": "mocha --recursive test/middleware test/models test/routes",
"test:integration": "mocha --recursive test/integration",
"less": "gulp less",
"assets": "bower --allow-root install",
"docker-up": "docker-compose up",
"docker-debug": "docker-compose -f docker-compose.yaml -f docker-compose.debug.yaml up"
},
"dependencies": {
"body-parser": "^1.18.3",
"bower": "^1.8.2",
"bson": "^1.0.4",
"chai-as-promised": "^7.1.1",
"co": "^4.6.0",
"compression": "^1.7.3",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-authorization": "^1.0.0",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"express-vue": "^4.0.14",
"glob": "^6.0.4",
"handlebars": "^4.0.6",
"handlebars-helpers": "^0.9.8",
"invert-color": "^1.2.3",
"method-override": "^2.3.10",
"mongodb": "^2.2.25",
"mongodb-extended-json": "^1.10.0",
"mongoose": "^4.9.1",
"morgan": "^1.9.1",
"multer": "^1.3.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.2.1",
"serve-favicon": "^2.3.0",
"uuid": "^3.1.0",
"vue-clipboard2": "^0.2.1"
},
"devDependencies": {
"bower": "^1.8.4",
"chai": "^4.1.2",
"csv": "^3.1.0",
"debug": "^2.2.0",
"dotenv": "^6.2.0",
"fs-extra": "^6.0.1",
"gulp": "^3.9.0",
"gulp-less": "^3.0.1",
"gulp-livereload": "^3.8.0",
"gulp-nodemon": "^2.0.2",
"gulp-plumber": "^1.0.0",
"mocha": "^3.0.2",
"nodemon": "^1.17.5",
"nyc": "^10.0.0",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0",
"supertest": "^2.0.0"
}
}