-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
{
"name": "idle-game",
"author": "Daniel Whiffing",
"version": "0.0.4",
"description": "An idle game based on Matter of Scale.",
"main": "src/index.js",
"license": "ISC",
"homepage": "https://github.com/dwhiffing/idle-game#readme",
"keywords": [
"react",
"redux",
"idle",
"incremental"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dwhiffing/idle-game.git"
},
"bugs": {
"url": "https://github.com/dwhiffing/idle-game/issues"
},
"scripts": {
"build": "NODE_ENV=production webpack -p --config webpack.prod.js",
"start": "node server.js",
"lint": "eslint ./src"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"bootstrap": "^3.3.6",
"classnames": "^2.2.1",
"history": "^3.0.0",
"lodash": "^4.13.1",
"numeral": "^1.5.3",
"react": "^15.1.0",
"react-bootstrap": "^0.29.4",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"redux": "^3.2.1",
"redux-actions": "^0.10.0",
"redux-logger": "^2.6.1",
"redux-persist": "^3.2.2",
"redux-saga": "^0.10.5",
"updeep": "^0.16.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel-core": "^6.3.15",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-native": "^1.9.0",
"eslint": "^2.12.0",
"eslint-plugin-react": "^5.1.1",
"express": "^4.13.3",
"jsx-loader": "^0.13.1",
"raw-loader": "^0.5.1",
"style-loader": "^0.12.3",
"url-loader": "^0.5.5",
"webpack": "^1.9.11",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.10.0"
}
}