forked from Ada-C5/VideoStoreAPI
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.19 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.19 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
{
"name": "VideoStoreAPI",
"version": "0.0.0",
"private": true,
"scripts": {
"setup": "node ./setup.js",
"start": "./node_modules/.bin/nodemon ./bin/www",
"start-test": "NODE_ENV=test ./node_modules/.bin/nodemon ./bin/www",
"test": "clear; ./node_modules/.bin/istanbul cover -x 'spec/**/*' -- ./node_modules/.bin/jasmine-node --captureExceptions --verbose spec/",
"db:drop": "dropdb radio_star_development",
"db:create": "createdb radio_star_development",
"db:dropt": "dropdb radio_star_test",
"db:createt": "createdb radio_star_test",
"db:schema": "node tasks/load_schema.js",
"db:seed": "node tasks/seed_data.js",
"db:reset": "npm run db:drop; npm run db:dropt; npm run db:create; npm run db:createt; npm run db:schema; npm run db:schema; npm run db:seed"
},
"dependencies": {
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.13.1",
"massive": "^2.3.0",
"morgan": "~1.6.1",
"nodemon": "^1.9.2",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"istanbul": "^0.4.4",
"jasmine-node": "^1.14.5",
"massive": "^2.3.0",
"nodemon": "^1.9.2",
"request": "^2.72.0"
}
}