-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.68 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
{
"name": "tv",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack": " cross-env NODE_ENV=production webpack -p --bail",
"start:src": " cross-env NODE_ENV=production webpack-dev-server --compress --watch-poll",
"start": "webpack-dev-server --inline --compress",
"start:noc": "webpack-dev-server --inline",
"build": "npm install && npm run lintnofix && npm run lint:css && npm test && npm run webpack",
"lint": "eslint . --ext .js,.jsx --fix",
"lintnofix": "eslint . --ext .js,.jsx",
"lint:css": "stylelint 'src/**/*.css'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"eslint-config-airbnb": "^14.1.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.16.4",
"lodash.debounce": "^4.0.8",
"lodash.findlast": "^4.6.0",
"material-ui": "^0.17.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.8.0",
"postcss-import": "9.1.0",
"postcss-loader": "^1.1.1",
"postcss-reporter": "^3.0.0",
"prop-types": "^15.5.4",
"react": "^15.5.4",
"react-custom-scrollbars": "^4.1.0",
"react-dom": "^15.3.2",
"react-helmet": "^5.0.1",
"react-lazyload": "^2.2.7",
"react-markdown": "^2.4.4",
"react-measure": "1.4.6",
"react-redux": "^5.0.4",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"react-socket-io": "^0.2.4",
"react-tap-event-plugin": "^2.0.1",
"react-tooltip": "3.2.3",
"redux": "^3.6.0",
"redux-logger": "^3.0.0",
"redux-responsive": "^3.2.0",
"redux-thunk": "^2.1.0",
"seamless-immutable": "^7.0.0",
"uuid": "^3.0.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.2.0-rc.0"
},
"devDependencies": {
"babel-core": "6.24.1",
"babel-loader": "^6.2.10",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.18.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.0",
"css-modules-require-hook": "^4.0.5",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-webpack": "^0.8.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "6.10.3",
"file-loader": "^0.11.0",
"mocha": "^3.1.2",
"react-addons-perf": "^15.3.2",
"react-addons-test-utils": "^15.4.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-perf-tool": "^0.1.7",
"style-loader": "^0.16.0",
"stylelint": "^7.6.0",
"stylelint-config-css-modules": "^0.1.0",
"stylelint-config-standard": "^16.0.0",
"url-loader": "^0.5.7"
}
}