-
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) · 862 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 862 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": "flux-stack",
"version": "0.0.1",
"description": "Stack Demo with flux",
"main": "js/app.js",
"dependencies": {
"codemirror": "^5.19.0",
"codemirror-highlight-node": "^1.0.2",
"flux": "^2.0.0",
"keymirror": "^0.1.1",
"react": "^15.3.0",
"react-code-mirror": "^3.1.0",
"react-codemirror": "^0.2.6",
"react-dom": "^15.3.0",
"uglifyjs": "^2.4.10",
"underscore": "^1.8.3",
"webpack-build": "^1.0.1"
},
"devDependencies": {
"browserify": "~13.1.0",
"envify": "~3.4.1",
"react": "^15.3.0",
"reactify": "^1.1",
"watchify": "~3.7.0"
},
"scripts": {
"start": "watchify -o js/bundle.js -v -d .",
"build": "browserify . | uglifyjs -cm > js/bundle.min.js"
},
"author": "Chirag Vekariya",
"browserify": {
"transform": [
"reactify",
"envify"
]
}
}