-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.73 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
58
59
60
61
62
63
{
"name": "block5d-backend",
"version": "1.0.0",
"description": "Server side for block5d API",
"main": "server/server.js",
"engines": {
"node": "8.2.1",
"npm": "5.5.1"
},
"scripts": {
"preinstall": "",
"start": "npm install; node server/server.js",
"esdoc": "./node_modules/.bin/esdoc",
"test": "jest --coverage",
"dbup": "./node_modules/.bin/db-migrate up --config ./database.json",
"dbdown": "./node_modules/.bin/db-migrate down --config ./database.json",
"dbreset": "./node_modules/.bin/db-migrate reset --config ./database.json"
},
"repository": {
"type": "git",
"url": "https://github.com/Block5d/block5d-backend.git"
},
"author": "Block5D Team",
"license": "MIT",
"homepage": "https://github.com/Block5d/block5d-backend/blob/master/README.md",
"dependencies": {
"async": "^2.5.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.1",
"bunyan": "^1.8.12",
"compression": "^1.7.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"cross-var": "^1.1.0",
"csurf": "^1.9.0",
"db-migrate": "^0.10.1",
"db-migrate-mongodb": "^1.3.0",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"express-session": "^1.15.6",
"firebase-admin": "^5.4.2",
"helmet": "^3.8.2",
"jsonfile": "^4.0.0",
"lodash": "^4.17.4",
"mongodb": "^2.2.33",
"mysql2": "^1.4.2",
"q": "^1.5.0",
"request": "^2.81.0",
"rootpath": "^0.1.2",
"sequelize": "^4.20.1",
"swagger-jsdoc": "^1.9.7",
"validate.js": "^0.12.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"esdoc": "^1.0.3",
"esdoc-standard-plugin": "^1.0.0",
"jest": "^21.2.1",
"superagent": "^3.6.0",
"supertest": "^3.0.0"
}
}