Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80635 views
1
{
2
"name": "todomvc-flux",
3
"version": "0.0.3",
4
"description": "Example Flux architecture.",
5
"repository": "https://github.com/facebook/flux",
6
"main": "js/app.js",
7
"dependencies": {
8
"flux": "^2.0.1",
9
"keymirror": "~0.1.0",
10
"object-assign": "^1.0.0",
11
"react": "^0.12.0"
12
},
13
"devDependencies": {
14
"browserify": "^6.2.0",
15
"envify": "^3.0.0",
16
"jest-cli": "^0.4.3",
17
"reactify": "^0.15.2",
18
"uglify-js": "~2.4.15",
19
"watchify": "^2.1.1"
20
},
21
"scripts": {
22
"start": "watchify -o js/bundle.js -v -d js/app.js",
23
"build": "browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > js/bundle.min.js",
24
"test": "jest"
25
},
26
"author": "Bill Fisher",
27
"browserify": {
28
"transform": [
29
"reactify",
30
"envify"
31
]
32
},
33
"jest": {
34
"rootDir": "./js"
35
}
36
}
37
38