-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "sp-world-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "forever start app.js",
"start:dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavel06081991/SPWorldBackend.git"
},
"author": "pavel06081991",
"license": "ISC",
"bugs": {
"url": "https://github.com/pavel06081991/SPWorldBackend/issues"
},
"homepage": "https://github.com/pavel06081991/SPWorldBackend#readme",
"dependencies": {
"bcryptjs": "^2.3.0",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"express": "^4.14.0",
"express-validator": "^2.20.8",
"jsonwebtoken": "^7.1.9",
"lodash": "^4.15.0",
"morgan": "^1.7.0",
"mysql": "^2.11.1",
"sequelize": "^3.24.1",
"sp-load": "^1.1.0"
},
"_localDependencies": {
"config": "./config",
"rootRoutes": "./routes/root",
"usersRoutes": "./routes/users",
"usersUtils": "./utils/users",
"routesUtils": "./utils/routes",
"customSanitizers": "./utils/sanitizers",
"customValidators": "./utils/validators",
"dbConnection": "./utils/db_connection",
"usersModel": "./db_models/users"
},
"_sp-load": {
"renaming": {
"lodash": "_",
"jsonwebtoken": "jwt",
"bcryptjs": "bcrypt"
}
}
}