-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "node-server",
"version": "1.0.0",
"description": "node-server",
"main": "app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development node app.js",
"pro": "cross-env NODE_ENV=production node app.js",
"test": "mocha ./core/test/**/*.js",
"lint": "eslint ."
},
"author": "senola",
"license": "MIT",
"engines": {
"node": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"dependencies": {
"assert": "^1.4.1",
"axios": "^0.19.0",
"bluebird": "^3.5.1",
"body-parser": "^1.16.0",
"bookshelf": "^0.10.4",
"colors": "^1.1.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"cross-env": "^5.1.1",
"express": "^4.14.1",
"express-session": "^1.15.0",
"knex": "^0.13.0",
"lodash": "4.17.15",
"method-override": "^2.3.7",
"moment": "^2.19.1",
"mongoose": "^5.7.7",
"morgan": "^1.8.0",
"mysql2": "^1.5.1",
"nconf": "^0.9.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"puppeteer": "^5.2.1",
"restify": "^4.3.0",
"semver": "^5.4.1",
"sequelize": "^5.8.9",
"sqlite3": "^3.1.13",
"unidecode": "^0.1.8",
"validator": "^9.1.1",
"winston": "^3.0.0-rc1"
},
"devDependencies": {
"eslint": "^4.10.0",
"mocha": "^4.0.1",
"should": "^13.1.3"
}
}