-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 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
{
"name": "node-whishlist-api",
"version": "0.0.1",
"description": "A simple wishlist api",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha test",
"start": "babel-node index.js",
"babel-node": "babel-node",
"apidoc": "apidoc -i endpoints -o public/apidoc",
"pm2": "pm2 delete ecosystem.json; pm2 startOrReload ecosystem.json --interpreter babel-node",
"production": "export NODE_ENV=production; npm run pm2",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"coverage": "NODE_ENV=test babel-node ./node_modules/babel-istanbul/lib/cli cover _mocha",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"engines": {
"node": "6.3.0"
},
"author": "Dan Jesus <[email protected]> (danjesus.github.io)",
"license": "MIT",
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-3": "^6.11.0",
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"consign": "^0.1.2",
"cors": "^2.7.1",
"express": "^4.14.0",
"helmet": "^3.8.2",
"http": "0.0.0",
"jsonwebtoken": "^8.0.0",
"jwt-simple": "^0.5.0",
"morgan": "^1.7.0",
"mysql": "^2.11.1",
"passport": "^0.3.2",
"passport-jwt": "^2.1.0",
"pg": "^6.0.3",
"pg-hstore": "^2.3.2",
"pg-native": "^1.10.0",
"request": "^2.74.0",
"sequelize": "^4.17.2",
"sequelize-cli": "^3.0.0",
"sqlite3": "^4.0.0",
"winston": "^2.2.0",
"snyk": "^1.88.2"
},
"devDependencies": {
"apidoc": "0.16.1",
"babel-core": "6.26.3",
"babel-eslint": "7.2.3",
"babel-istanbul": "0.11.0",
"babel-register": "6.26.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "10.0.1",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.10.3",
"eslint-plugin-standard": "2.3.1",
"istanbul": "0.4.5",
"mocha": "2.5.3",
"nodemon": "1.19.4",
"sqlite3": "3.1.13",
"supertest": "1.2.0"
},
"snyk": true
}