-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 864 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 864 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
28
29
30
31
32
33
34
35
36
37
{
"name": "fluxxor-test",
"version": "0.0.0",
"scripts": {
"watch-js": "watchify public/javascripts/main.js -o public/javascripts/bundle.js -v",
"build-js": "browserify public/javascripts/main.js -o public/javascripts/bundle.js"
},
"main": "app.js",
"author": "Gregory Tandiono & Max Lin",
"dependencies": {
"babelify": "^6.0.2",
"body-parser": "1.8.1",
"cookie-parser": "1.3.3",
"debug": "2.0.0",
"express": "4.9.0",
"faker": "^2.1.2",
"fluxxor": "^1.5.3",
"jade": "1.6.0",
"morgan": "1.3.0",
"react": "^0.13.2",
"serve-favicon": "2.1.3",
"underscore": "^1.8.3"
},
"devDependencies": {
"browserify": "6.2.0",
"envify": "3.0.0",
"reactify": "0.15",
"watchify": "3.2.1"
},
"browserify": {
"transform": [
"reactify",
"envify",
"babelify"
]
}
}