-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·124 lines (124 loc) · 4.29 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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"private": true,
"name": "src",
"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-ts && yarn run lint-css",
"lint-js": "eslint --ext .js devServer.js webpack.config.dev.js webpack.config.prod.js ./src",
"lint-ts": "tslint ./src/**/*.ts?",
"lint-css": "stylelint './src/**/*.scss' --syntax scss --fix; exit 0",
"lintfix": "yarn run lintfix-js && yarn run lintfix-ts && yarn run lintfix-css",
"lintfix-js": "eslint --ext .js ./src --fix",
"lintfix-ts": "tslint ./src/**/*.ts? --fix",
"lintfix-css": "stylefmt --config ./.stylelintrc --recursive ./src/**/*.scss"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/google-map-react": "^0.22.1",
"@types/jwt-decode": "^1.4.28",
"@types/material-ui": "^0.16.60",
"@types/node": "^7.0.12",
"@types/react": "^15.0.21",
"@types/react-bootstrap": "^0.0.47",
"@types/react-dom": "^0.14.23",
"@types/react-redux": "^4.4.38",
"@types/react-redux-i18n": "^0.0.3",
"@types/react-redux-toastr": "^3.7.3",
"@types/react-router": "^3.0.6",
"@types/react-router-bootstrap": "^0.23.2",
"@types/react-router-redux": "^4.0.0+20160602212457",
"@types/react-scrollbar": "^0.4.6",
"@types/react-sidebar": "^2.2.0",
"@types/react-tap-event-plugin": "^0.0.30",
"@types/redux": "^3.6.0",
"@types/redux-logger": "^3.0.0",
"@types/redux-thunk": "^2.1.0",
"@types/screenfull": "^3.0.28",
"@types/validator": "^6.2.0",
"autoprefixer": "^6.7.7",
"awesome-typescript-loader": "^3.1.2",
"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-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.23.0",
"babel-preset-stage-0": "^6.5.0",
"babel-relay-plugin-loader": "^0.10.0",
"bootstrap": "^3.3.7",
"compression-webpack-plugin": "^0.3.2",
"cross-env": "3.2.4",
"css-loader": "^0.27.3",
"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-standard": "^2.0.1",
"file-loader": "^0.10.1",
"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",
"node-sass": "^4.5.1",
"outdated-browser-pro": "^1.0.0",
"postcss-loader": "^1.3.3",
"rc-collapse": "^1.6.12",
"react": "^15.4.2",
"react-bootstrap": "^0.30.8",
"react-dom": "^15.4.2",
"react-grid-layout": "^0.14.4",
"react-redux": "^5.0.3",
"react-redux-i18n": "^1.8.0",
"react-redux-toastr": "^5.0.0",
"react-router": "^2.5.2",
"react-router-active-component": "^4.0.0",
"react-router-bootstrap": "^0.23.1",
"react-router-redux": "^4.0.5",
"react-scrollbar": "^0.5.1",
"react-select": "^1.0.0-rc.3",
"react-sidebar": "^2.3.0",
"react-tap-event-plugin": "^2.0.1",
"react-validate": "^0.1.3",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.2.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",
"systemjs": "^0.19.47",
"ts-loader": "^2.0.3",
"tslint": "^4.5.1",
"tslint-loader": "^3.4.3",
"typescript": "next",
"url-loader": "^0.5.8",
"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"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.23.0",
"uglify-js": "git://github.com/mishoo/UglifyJS2#harmony",
"uglifyjs-webpack-plugin": "^0.4.3"
}
}