forked from waiyaki/postgres-express-node-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 965 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 965 Bytes
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
{
"name": "postgres-express-react-node-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "./node_modules/.bin/nodemon ./bin/www -w app.js -w server",
"test": "mocha --timeout 10000"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"gulp-exit": "0.0.2",
"morgan": "^1.7.0",
"pg": "^6.2.4",
"pg-hstore": "^2.3.2",
"pm2": "^2.7.2",
"sequelize": "^4.1.0",
"supertest": "^3.0.0",
"tape": "^4.8.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"gulp": "^3.9.1",
"gulp-mocha": "^4.3.1",
"mocha": "^4.0.1",
"nodemon": "^1.11.0",
"sequelize-cli": "^3.0.0"
}
}