-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 747 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 747 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
{
"name": "acme_users_demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "DATABASE_URL=postgres://localhost/acme_users_demo_test nodemon ./node_modules/mocha/bin/mocha",
"start:dev": "DATABASE_URL=postgres://localhost/acme_users_demo nodemon server.js",
"sync": "SYNC=true DATABASE_URL=postgres://localhost/acme_users_demo node server.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2"
},
"dependencies": {
"bluebird": "^3.4.3",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"express": "^4.14.0",
"method-override": "^2.3.6",
"pg": "^6.1.0",
"sequelize": "^3.24.1",
"swig": "^1.4.2"
}
}