-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·57 lines (57 loc) · 1.5 KB
/
package.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.5 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "express-plus",
"version": "1.0.0",
"description": "backend framework based on express.js",
"main": "./src/app.js",
"repository": {
"type": "git",
"url": "https://github.com/alexxxiy/express-plus.git"
},
"scripts": {
"test": "NODE_PATH=.:./src mocha -u tdd -R spec src/qa/tests-unit.js",
"start": "NODE_ENV=dev NODE_PATH=../override:.:./src nodemon src/app.js",
"prod": "./bin/run-prod.sh",
"nginx_mac": "./bin/run_mac.sh",
"nginx_stop": "sudo nginx -s stop"
},
"author": "Alexey Alekhin",
"license": "UNLICENSED",
"dependencies": {
"await-to-js": "2.0.1",
"bluebird": "3.5.0",
"body-parser": "1.16.0",
"chai": "3.5.0",
"colors": "1.1.2",
"connect-redis": "3.3.2",
"express": "4.14.0",
"express-formidable": "1.0.0",
"express-graphql": "0.6.3",
"express-session": "1.15.6",
"formidable": "1.1.1",
"fs-extra": "5.0.0",
"glob": "7.1.2",
"graphql": "0.10.5",
"http-status": "1.0.1",
"jsonwebtoken": "8.1.0",
"lodash": "4.17.4",
"mime-types": "2.1.17",
"mongodb": "2.2.22",
"mongoose": "4.12.4",
"multiparty": "4.1.3",
"node-vkapi": "2.1.0",
"passport": "0.4.0",
"passport-jwt": "3.0.1",
"passport-local": "1.0.0",
"path-exists": "3.0.0",
"pg": "6.1.2",
"pug": "2.0.0-beta6",
"request": "2.81.0",
"request-ip": "2.0.2",
"request-promise": "4.2.1",
"socket.io": "2.0.4",
"socketio-jwt": "4.5.0"
},
"devDependencies": {
"mocha": "3.2.0"
}
}