-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.18 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
{
"version": "0.0.1",
"name": "Werewolf",
"description": "An app to help you play Werewolf",
"author": "Rebecca Hill <[email protected]>, Ben Naylor <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "./node_modules/.bin/webpack --config build/webpack.config.js --display-error-details --sourceMap --bail",
"dist": "./node_modules/.bin/webpack --config build/webpack.config.js --prod --bail",
"start": "node server/server.js",
"prepublish": "./node_modules/.bin/bower install",
"test": "./node_modules/.bin/webpack --config test/webpack-test.config.js --display-error-details --bail && mocha-phantomjs test/index.html",
"watch": "./node_modules/.bin/webpack --config build/webpack.config.js --progress --colors --watch"
},
"keywords": [
"es6"
],
"devDependencies": {
"autoprefixer": "^6.3.1",
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"bower": "^1.7.9",
"bower-webpack-plugin": "^0.1.8",
"css-loader": "^0.17.0",
"eslint": "^1.3.1",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.6.3",
"extract-text-webpack-plugin": "^0.8.0",
"file-loader": "^0.8.4",
"hapi": "^8.6.0",
"mocha-bamboo-reporter": "^1.1.0",
"mocha-loader": "^0.7.1",
"mocha-phantomjs": "^3.6.0",
"mocha-teamcity-reporter": "0.0.4",
"moment": "^2.10.3",
"node-sass": "^3.6.0",
"phantomjs": "1.9.7-15",
"phantomjs-polyfill": "0.0.1",
"postcss-loader": "^0.8.0",
"raw-loader": "^0.5.1",
"react-addons-css-transition-group": "^0.14.3",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^2.1.5",
"sass-loader": "^2.0.1",
"style-loader": "^0.12.3",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"history": "^1.13.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "^4.0.0",
"react-router": "^2.0.1",
"react-router-redux": "^4.0.0",
"redux": "^3.0.4",
"redux-actions": "^0.10.1",
"redux-saga": "^0.9.1"
}
}