-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.85 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "chain",
"version": "0.0.1",
"description": "A New Visual Programming Environment to Build JavaScript By Linking Blocks",
"main": "docs/index.htnl",
"scripts": {
"webpack": "./node_modules/.bin/webpack --config webpack.config.babel.js",
"build": "npm-run-all build:*",
"build:pug": "./node_modules/.bin/pug --hierarchy -o docs/ src/",
"build:js": "npm run webpack",
"watch": "npm-run-all --parallel watch:*",
"watch:pug": "npm run build:pug -- -w",
"watch:js": "WATCH=true ./node_modules/.bin/webpack-dev-server --config webpack.config.babel.js"
},
"keywords": [],
"author": "Hiroki Usuba <[email protected]> (http://mimorisuzuko.github.io/)",
"license": "MIT",
"dependencies": {
"autobind-decorator": "^2.1.0",
"immutable": "^3.8.1",
"lodash": "^4.17.4",
"react": "^15.6.1",
"react-codemirror": "^1.0.0",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-batched-actions": "^0.1.6"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-react-css-modules": "^3.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.4",
"node-sass": "^4.5.3",
"npm-run-all": "^4.0.2",
"postcss-loader": "^2.0.6",
"postcss-scss": "^1.0.2",
"pug-cli": "^1.0.0-alpha6",
"react-hot-loader": "^1.3.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.5.1",
"webpack-dev-server": "^2.7.1"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}