-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.84 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "example-backend",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"task": "node ./tasks",
"mysql:start": "npm run task -- mysql:start",
"mysql:stop": "npm run task -- mysql:stop",
"mysql:web": "npm run task -- mysql:web",
"mysql:shell": "npm run task -- mysql:shell",
"mysql:backup": "npm run task -- mysql:backup",
"mysql:restore": "npm run task -- mysql:restore",
"mysql:deploy": "npm run task -- mysql:deploy",
"mysql:exec": "npm run task -- mysql:exec",
"mysql:populate": "npm run mysql:exec -- populate",
"mongo:start": "npm run task -- mongo:start",
"mongo:stop": "npm run task -- mongo:stop",
"mongo:shell": "npm run task -- mongo:shell",
"mongo:backup": "npm run task -- mongo:backup",
"mongo:restore": "npm run task -- mongo:restore",
"mongo:deploy": "npm run task -- mongo:deploy",
"clean": "npm run task -- clean",
"build": "npm run task -- build",
"zip": "npm run task -- zip",
"deploy:dev": "npm run task -- deploy dev",
"deploy:uat": "npm run task -- deploy uat",
"forever:start": "npm run task -- forever:start",
"forever:stop": "npm run task -- forever:stop",
"dev": "NODE_ENV=development babel-node --config-file ./.babelrc --extensions \".js,.ts,.json\" ./src/index.js",
"start": "node build/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^15.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-session": "^1.3.3",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-fileupload": "^1.1.6",
"express-validator": "^5.3.1",
"forever": "^1.0.0",
"http-errors": "^1.7.2",
"morgan": "^1.9.1",
"mysql2": "^1.6.5",
"passport": "^0.4.0",
"passport-azure-ad": "^4.0.0",
"passport-local": "^1.0.0",
"passport-microsoft": "0.0.5",
"sequelize": "^5.21.2",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@types/bluebird": "^3.5.26",
"@types/express": "^4.16.1",
"@types/joi": "^14.3.3",
"@types/node": "^12.0.2",
"@types/sequelize": "^4.28.7",
"@types/validator": "^10.11.0",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-source-map-support": "^2.0.1",
"bestzip": "^2.1.5",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^18.1.4",
"source-map-support": "^0.5.12",
"tasksfile": "^5.1.0"
},
"description": ""
}