-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "flow-graph",
"version": "0.0.0",
"description": "Flow AST Visualization",
"scripts": {
"build": "webpack",
"start": "node index.js",
"start:prod": "npm run build && node index.js"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-register": "^6.9.0",
"css-loader": "^0.23.1",
"eslint": "^2.11.1",
"eslint-plugin-react": "^5.1.1",
"express": "^4.13.4",
"node-sass": "^3.8.0",
"path": "^0.12.7",
"react": "^15.1.0",
"react-hot-loader": "^1.3.0",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"babel": "^5.8.24",
"babel-plugin-transform-es2015-arrow-functions": "^6.5.2",
"babel-plugin-transform-es2015-block-scoping": "^6.7.1",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-function-name": "^6.5.0",
"babel-plugin-transform-es2015-parameters": "^6.7.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-runtime": "5.8.24",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"redux-immutable": "^3.0.6"
}
}