-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 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
{
"name": "moviefactdb",
"version": "1.0.0",
"description": "A demo Node.js application.",
"private": true,
"scripts": {
"start": "NODE_ENV=development supervisor -w public,models,controllers,components,config,app.js -e js,jade,css,jsx ./bin/www",
"test": "./node_modules/jasmine/bin/jasmine.js"
},
"repository": {
"type": "git",
"url": "https://github.com/steveherschleb/moviefactsdb.git"
},
"author": "Steve Herschleb <[email protected]>",
"license": {
"type": "MIT",
"url": "https://github.com/steveherschleb/moviefactsdb/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/steveherschleb/moviefactsdb/issues"
},
"homepage": "https://github.com/steveherschleb/moviefactsdb",
"dependencies": {
"body-parser": "~1.12.4",
"bookshelf": "^0.8.1",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.12.4",
"knex": "^0.8.6",
"morgan": "~1.5.3",
"node-jsx": "^0.13.3",
"react": "^0.13.3",
"serve-favicon": "~2.2.1",
"sqlite3": "^3.0.8"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-cssmin": "^0.12.3",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-sass": "^1.0.0",
"jasmine": "^2.3.1",
"jshint-stylish": "^2.0.0",
"supertest": "^1.0.1",
"supervisor": "^0.6.0"
}
}