-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "test-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec \"babel-node src/app.js\"",
"prestart": "babel src --out-dir dist",
"start": "node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.2",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "^4.1.1",
"express": "^4.16.4",
"helmet": "^3.15.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"mongoose": "^5.4.1",
"morgan": "^1.9.1",
"mysql2": "^1.6.4",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"request": "^2.88.0",
"sequelize": "^4.42.0",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^5.11.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-watch": "^4.0.2",
"mocha": "^5.2.0",
"nodemon": "^1.18.9"
}
}