-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·111 lines (111 loc) · 3.98 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"private": false,
"name": "React-js-boilerplate",
"version": "1.0.0",
"description": "",
"homepage": "",
"author": "",
"scripts": {
"dev": "webpack-dev-server --output-public-path=/static/",
"prod": "cross-env NODE_ENV=production webpack-dev-server --env.prod=true",
"build": "cross-env NODE_ENV=production webpack --env.prod=true",
"lint": "yarn run lint-js && yarn run lint-css",
"lint-js": "eslint --ext .js devServer.js webpack.config.dev.js webpack.config.prod.js ./src",
"lint-css": "stylelint './src/**/*.scss' --syntax scss --fix; exit 0",
"lintfix": "yarn run lintfix-js && yarn run lintfix-css",
"lintfix-js": "eslint --ext .js ./src --fix",
"lintfix-css": "stylefmt --config ./.stylelintrc --recursive ./src/**/*.scss",
"dll": "rimraf dll && cross-env NODE_ENV=production webpack --config=webpack.config.dll.js --env.prod=false",
"dll-prod": "rimraf dll && cross-env NODE_ENV=production webpack --config=webpack.config.dll.js --env.prod=true"
},
"dependencies": {
"autoprefixer": "^6.7.7",
"axios": "^0.16.0",
"babel-core": "^6.10.4",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-display-name": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-relay-plugin-loader": "^0.11.0",
"bootstrap": "^3.3.7",
"compression-webpack-plugin": "^0.3.2",
"cross-env": "4.0.0",
"css-loader": "^0.28.0",
"eslint": "^3.10.2",
"eslint-config-standard": "^7.1.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^0.11.0",
"font-awesome": "^4.7.0",
"google-map-react": "^0.23.0",
"happypack": "^3.0.2",
"img-loader": "^2.0.0",
"imports-loader": "^0.7.1",
"jwt-decode": "^2.2.0",
"material-ui": "^0.17.1",
"moment": "^2.15.1",
"moment-timezone": "^0.5.11",
"node-sass": "^4.5.1",
"outdated-browser-pro": "^1.0.0",
"postcss-loader": "^1.3.3",
"promise-polyfill": "^6.0.2",
"rc-collapse": "^1.6.10",
"react": "^15.4.1",
"react-accordion-components": "^1.0.3",
"react-addons-css-transition-group": "^15.4.0",
"react-addons-transition-group": "^15.0.0",
"react-bootstrap": "^0.30.6",
"react-data-components": "^1.1.0",
"react-data-grid": "^2.0.1",
"react-dom": "^15.4.0",
"react-grid-layout": "^0.14.4",
"react-hot-loader": "^3.0.0-beta.6",
"react-moment": "0.2.2",
"react-motion": "^0.4.5",
"react-paginate": "^4.3.1",
"react-promise": "^1.1.2",
"react-redux": "^5.0.3",
"react-redux-i18n": "^1.8.0",
"react-redux-toastr": "^5.0.0",
"react-router": "^3.0.0",
"react-router-active-component": "^4.0.0",
"react-router-bootstrap": "^0.23.1",
"react-router-redux": "^4.0.7",
"react-scrollbar": "^0.5.1",
"react-select": "^1.0.0-rc.2",
"react-sidebar": "^2.2.1",
"react-tap-event-plugin": "^2.0.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"react-validate": "^0.1.3",
"redux": "^3.6.0",
"redux-form": "^6.2.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.2",
"sass-loader": "^6.0.3",
"screenfull": "^3.1.0",
"style-loader": "^0.16.0",
"stylefmt": "^5.1.1",
"stylelint": "^7.9.0",
"stylelint-scss": "^1.4.1",
"stylelint-webpack-plugin": "^0.7.0",
"url-loader": "^0.5.7",
"validator": "^7.0.0",
"webpack": "^2.3.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^2.3.0",
"webpack-hot-middleware": "^2.13.2",
"uglify-js": "git://github.com/mishoo/UglifyJS2#harmony",
"uglifyjs-webpack-plugin": "^0.4.3"
}
}