-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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
{
"name": "backbone-node",
"description": "developing backbonejs apps with node backend",
"keywords": [
"backbone",
"node",
"nodejs",
"tutorial",
"learn",
"app"
],
"author": {
"name": "Gabriel M",
"email": "[email protected]",
"url": "https://twitter.com/GabrielMajivu"
},
"repository": {
"type": "git",
"url": "https://github.com/gabeno/backbone_node.git"
},
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node app.js",
"test": "./node_modules/bin/mocha"
},
"dependencies": {
"express": "3.4.0",
"jade": "1.1.4",
"jquery": "~2.1.0",
"backbone": "~1.1.0",
"lodash": "~2.4.1",
"underscore": "~1.5.2",
"backbone.localstorage": "~1.1.7"
},
"devDependencies": {
"chai": "~1.9.0",
"sinon": "~1.8.1",
"mocha": "~1.17.1",
"gulp": "~3.5.2",
"gulp-util": "~2.2.14",
"gulp-watch": "~0.5.0",
"gulp-eslint": "~0.1.2",
"gulp-mocha": "~0.4.1",
"gulp-notify": "~0.4.1",
"sinon-chai": "~2.5.0",
"jsdom": "~0.10.1",
"cheerio": "~0.13.1",
"zombie": "~2.0.0-alpha27"
}
}