-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 772 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 772 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
{
"name": "react-cirque",
"version": "0.0.1",
"description": "Cirque Prototype using React + Flux.",
"repository": "https://github.com/facebook/flux",
"main": "js/index.js",
"dependencies": {
"react": "0.11.2",
"intl": "0.1.4",
"react-intl": "1.0.0",
"jquery": "2.1.1"
},
"devDependencies": {
"browserify": "~4.2.2",
"envify": "~2.0.1",
"jest-cli": "~0.1.17",
"reactify": "~0.14.0",
"uglify-js": "~2.4.15",
"watchify": "~0.10.2",
"uglifyify": "*"
},
"scripts": {
"start": "watchify -o js/bundle.js -v -d .",
"build": "NODE_ENV=production browserify . | uglifyjs -cm > js/bundle.min.js"
},
"author": "Bill Fisher",
"browserify": {
"transform": [
"reactify",
"envify"
]
}
}