-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.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
{
"name": "opendota-ui",
"description": "Dota 2 Data Web UI",
"version": "1.0.1",
"license": "GPL-3.0",
"scripts": {
"webpack": "NODE_ENV=production webpack -p --bail",
"start": "webpack-dev-server --inline --compress",
"start:noc": "webpack-dev-server --inline",
"startstage": "API_HOST=http://hchung.westus.cloudapp.azure.com:5000 webpack-dev-server --compress",
"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": "NODE_PATH=./src NODE_ENV=test mocha --ui bdd --reporter nyan -r test/initializeJsdom.js $(find src -name '*.spec.*')",
"test:watch": "npm test -- --watch --watch-extensions jsx,js"
},
"greenkeeper": {
"label": "type: greenkeeper"
},
"repository": {
"type": "git",
"url": "http://github.com/odota/ui"
},
"dependencies": {
"abcolor": "^0.5.5",
"c3": "^0.4.11",
"classnames": "^2.2.5",
"dotaconstants": "^4.5.0",
"flag-icon-css": "^2.8.0",
"fuzzy": "^0.1.3",
"heatmap.js": "^2.0.5",
"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",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-helmet": "^4.0.0",
"react-markdown": "^2.4.4",
"react-measure": "1.4.6",
"react-redux": "^5.0.0",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"react-tap-event-plugin": "^2.0.1",
"react-tooltip": "3.2.3",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"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",
"wordcloud": "^1.0.5"
},
"devDependencies": {
"babel-core": "6.23.1",
"babel-loader": "^6.2.10",
"babel-polyfill": "6.22.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",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.0",
"css-loader": "^0.26.0",
"css-modules-require-hook": "^4.0.5",
"dirty-chai": "^1.2.2",
"enzyme": "^2.6.0",
"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": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"file-loader": "^0.10.0",
"ignore-styles": "^5.0.1",
"jsdom": "^9.8.3",
"json-loader": "^0.5.4",
"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",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"stylelint": "^7.6.0",
"stylelint-config-css-modules": "^0.1.0",
"stylelint-config-standard": "^16.0.0",
"url-loader": "^0.5.7"
},
"moduleRoots": [
"./src",
"./node_modules"
]
}