-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-toolbox-example",
"description": "A set of complementary tools to ReactJS.",
"version": "0.12.0",
"author": {
"name": "React Toolbox Team",
"url": "http://github.com/react-toolbox"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-toolbox/react-toolbox-example.git"
},
"bugs": {
"url": "https://github.com/react-toolbox/react-toolbox/issues",
"email": "issues@react-toolbox.com"
},
"keywords": [
"components",
"material design",
"react",
"react-component",
"toolbox"
],
"engines": {
"node": ">=4.3.0",
"npm": ">=4.0.1"
},
"dependencies": {
"ip": "^1.1.5",
"lodash": "^4.17.4",
"lodash.merge": "^4.6.0",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.4.2",
"react-key-handler": "^0.3.0",
"react-layout-components": "^3.0.4",
"react-toolbox": "^2.0.0-beta.5",
"reactcss": "^1.2.2",
"socket.io": "^2.0.1",
"uid": "0.0.2",
"yuki-createjs": "0.0.3"
},
"devDependencies": {
"autoprefixer": "^6.6.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.21.0",
"babel-eslint": "~7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-node-env-inline": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"eslint": "~3.14.0",
"eslint-plugin-babel": "~4.0.1",
"eslint-plugin-react": "^6.9.0",
"nodemon": "^1.11.0",
"postcss-cssnext": "^2.9.0",
"postcss-each": "^0.9.3",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.2.2",
"postcss-mixins": "^5.4.1",
"react-hot-loader": "^3.0.0-beta.6",
"redux-devtools-extension": "^1.0.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
},
"scripts": {
"start": "node_modules/.bin/cross-env NODE_ENV=development node_modules/.bin/webpack-dev-server --colors --host 0.0.0.0 --config webpack.config.js",
"build": "node_modules/.bin/cross-env NODE_ENV=production UV_THREADPOOL_SIZE=100 webpack --config webpack.config.js",
"deploy": "gh-pages -d build",
"start_server": "nodemon ./src/backend/index.js --exec babel-node --presets es2015,stage-2"
}
}