-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "lifegame",
"version": "1.0.0",
"description": "The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970. This is an approach to that game.",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"dev": "webpack-dev-server --hot",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juanialt/lifegame.git"
},
"keywords": [
"life game"
],
"author": "Juan Ignacio Alterio",
"license": "ISC",
"bugs": {
"url": "https://github.com/juanialt/lifegame/issues"
},
"homepage": "https://github.com/juanialt/lifegame#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.27.3",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-loader": "^1.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"postcss-loader": "^1.3.3",
"style-loader": "^0.14.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2",
"write-file-webpack-plugin": "^4.0.0"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.5",
"react-router-dom": "^4.0.0",
"redux": "^3.6.0",
"redux-saga": "^0.15.3"
}
}