-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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
67
68
69
{
"name": "game-of-life",
"description": "It is a 'cellular automaton', and was invented by Cambridge mathematician John Conway",
"author": "Simon Nonnis (https://github.com/SimoNonnis)",
"version": "0.6.0",
"license": "MIT",
"main": "src/main.js",
"scripts": {
"start": "webpack-dev-server --inline --hot",
"clean": "rm -rf ./dist/*",
"prebuild": "mkdir -p ./dist && npm run clean",
"build": "webpack -p --config webpack.config.prod.js",
"stats": "webpack --profile --json > stats.json"
},
"keywords": [
"react",
"reactjs",
"webpack",
"css-modules",
"babel",
"postcss",
"postcss-cssnext",
"web-font-loader",
"hot-module-replacement",
"eslint",
"eslint-loader",
"stylelint",
"html-webpack-plugin"
],
"homepage": "https://github.com/SimoNonnis/game-of-life#readme",
"repository": {
"type": "git",
"url": "https://github.com/SimoNonnis/game-of-life"
},
"bugs": {
"url": "https://github.com/SimoNonnis/game-of-life/issues"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"classnames": "^2.2.5",
"css-loader": "^0.23.1",
"eslint": "^2.11.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.21.0",
"image-webpack-loader": "^1.8.0",
"postcss-cssnext": "^2.6.0",
"postcss-loader": "^0.9.1",
"postcss-reporter": "^1.3.3",
"style-loader": "^0.13.1",
"stylelint-webpack-plugin": "^0.2.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"webpack-validator": "^2.1.1"
}
}