-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "backbone-react-mail-demo",
"version": "1.0.0",
"private": true,
"description": "demo application of a very basic email client using backbone, react, and webpack",
"main": "index.js",
"scripts": {
"start": "gulp && nodemon web.js",
"serve": "nodemon web.js",
"build": "gulp build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/danjamin/backbone-react-mail-demo.git"
},
"keywords": [
"backbone",
"react",
"webpack",
"backbone.react"
],
"author": "Dan G",
"license": "MIT",
"bugs": {
"url": "https://github.com/danjamin/backbone-react-mail-demo/issues"
},
"homepage": "https://github.com/danjamin/backbone-react-mail-demo",
"dependencies": {
"backbone": "^1.1.2",
"express": "^4.12.1",
"jquery": "^2.1.3",
"react": "^0.12.2",
"react.backbone": "^0.6.0",
"underscore": "^1.8.2"
},
"devDependencies": {
"autoprefixer-core": "^5.1.7",
"css-loader": "^0.9.1",
"gulp": "^3.8.11",
"gulp-webpack": "^1.2.0",
"jsx-loader": "^0.12.2",
"nodemon": "^1.3.7",
"postcss-loader": "^0.3.0",
"style-loader": "^0.8.3",
"webpack": "^1.6.0"
}
}