forked from facebookarchive/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.2 KB
/
package.json
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
{
"name": "flux-todomvc",
"version": "1.0.0",
"description": "Basic shell application for the Flux architecture",
"repository": "https://github.com/facebook/flux",
"author": "Kyle Davis",
"main": "bundle.js",
"scripts": {
"build": "webpack ./src/root.js ./bundle.js",
"watch": "webpack ./src/root.js ./bundle.js --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"classnames": "^2.2.3",
"flux": "../../.",
"immutable": "^3.8.0",
"react": "^15.0.2",
"react-dom": "^15.0.1"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-syntax-jsx": "^6.5.0",
"babel-plugin-syntax-object-rest-spread": "^6.5.0",
"babel-plugin-syntax-trailing-function-commas": "^6.5.0",
"babel-plugin-transform-flow-strip-types": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-plugin-transform-react-jsx": "^6.7.5",
"babel-plugin-transform-regenerator": "^6.5.2",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"webpack": "^1.13.0"
}
}