-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.48 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
{
"name": "houseofdota",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"coverage": "NODE_ENV=development istanbul cover _mocha -- -R spec --recursive --watch-extensions js,jsx --compilers js:babel-core/register --require app/assets/javascript/tests/setup.js $(find app/assets/javascript/tests/ -name '*_test.jsx' && find app/assets/javascript/tests/ -name '*_test.js')",
"dev": "NODE_ENV=development node dev-server.js",
"test": "NODE_ENV=development mocha --no-deprecation --recursive --reporter spec --watch-extensions js,jsx --compilers js:babel-core/register --require app/assets/javascript/tests/setup.js $(find app/assets/javascript/tests/ -name '*_test.jsx' && find app/assets/javascript/tests/ -name '*_test.js')",
"test:watch": "NODE_ENV=development mocha --no-deprecation --recursive --reporter spec --watch --watch-extensions js,jsx --compilers js:babel-core/register --require app/assets/javascript/tests/setup.js $(find app/assets/javascript/tests/ -name '*_test.jsx' && find app/assets/javascript/tests/ -name '*_test.js')",
"heroku-postbuild": "NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucashanke/houseofdota.git"
},
"author": "Lucas Hanke",
"license": "ISC",
"bugs": {
"url": "https://github.com/lucashanke/houseofdota/issues"
},
"homepage": "https://github.com/lucashanke/houseofdota#readme",
"dependencies": {
"axios": "^0.16.2",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.23.1",
"d3": "^3.5.16",
"extract-text-webpack-plugin": "^1.0.1",
"jquery": "^3.1.0",
"lodash": "^4.14.1",
"material-ui": "^0.18.5",
"node-sass": "^3.8.0",
"rd3": "^0.7.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-motion": "^0.4.4",
"react-swipeable-views": "^0.7.3",
"react-tap-event-plugin": "^2.0.1",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-bundle-tracker": "^0.0.93"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-airbnb": "^1.0.1",
"babel-register": "^6.4.3",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^8.0.1",
"mocha": "^3.0.1",
"react-addons-test-utils": "^15.6.0",
"sinon": "^1.17.5",
"webpack-dev-server": "^1.13.1"
}
}