-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.74 KB
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
{
"name": "ballers",
"version": "0.0.1",
"engines": {
"node": "6.9.1",
"yarn": "0.16.1"
},
"scripts": {
"build:test": "webpack --config client/webpack.config.js",
"build:production": "NODE_ENV=production webpack --config client/webpack.config.js",
"build:development": "webpack -w --config client/webpack.config.js",
"start": "yarn run build:development",
"test": "node_modules/.bin/mocha --require babel-register client/**/*.spec.js"
},
"cacheDirectories": [
"node_modules"
],
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"css-loader": "^0.26.1",
"es5-shim": "^4.5.7",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"imports-loader": "^0.7.0",
"node-sass": "^4.1.1",
"react": "^0.14.8 || ^15.0.0",
"react-dom": "^0.14.8 || ^15.0.0",
"react-geosuggest": "^2.0.0",
"react-google-maps": "^6.0.1",
"react-google-maps-loader": "^2.0.0",
"react-google-places-suggest": "^2.0.1",
"react-on-rails": "6.3.2",
"sass-loader": "^4.1.0",
"style-loader": "^0.13.1",
"susy": "^2.2.12",
"watchpack": "^1.1.0",
"webpack": "^1.12.14"
},
"devDependencies": {
"chai": "^3.5.0",
"enzyme": "^2.6.0",
"eslint": "^3.10.0",
"eslint-plugin-react": "^6.6.0",
"jsdom": "^9.8.3",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.1",
"sinon": "^1.17.6"
},
"license": "(MIT)"
}