-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.25 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
70
71
72
73
74
75
76
{
"name": "tic-tac-toe",
"version": "2.3.0",
"description": "Tic-tac-toe game",
"main": "index.html",
"scripts": {
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "node_modules/.bin/eslint .",
"lint:css": "node_modules/.bin/stylelint app/**/*.css",
"lint:staged": "lint-staged",
"start": "node internals/server",
"start:prod": "NODE_ENV=production node internals/server",
"clean": "rm -rf build",
"build": "npm run clean && NODE_ENV=production node_modules/.bin/webpack --config internals/webpack.config.prod.js --color"
},
"repository": "git+https://github.com/ahtohbi4/tic-tac-toe.git",
"keywords": [
"Tic-tac-toe",
"Game",
"React",
"ES6"
],
"author": "Alexandr Antonov",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahtohbi4/tic-tac-toe/issues"
},
"homepage": "https://github.com/ahtohbi4/tic-tac-toe#readme",
"lint-staged": {
"*.js": "lint:js",
"*.css": "lint:css"
},
"pre-commit": "lint:staged",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-eslint": "^7.2.1",
"babel-loader": "^7.0.0-beta.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.28.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-minify-loader": "^1.1.0",
"lint-staged": "^3.4.0",
"postcss-loader": "^1.3.3",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.3.1",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0"
},
"dependencies": {
"autoprefixer": "^6.3.6",
"classnames": "^2.2.5",
"matrix-slicer": "^2.4.0",
"normalize.css": "^6.0.0",
"postcss-csso": "^2.0.0",
"postcss-import": "^9.1.0",
"postcss-url": "^5.1.2",
"prop-types": "^15.5.4",
"react": "^15.5.3",
"react-addons-css-transition-group": "^15.3.1",
"react-dom": "^15.5.3",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"shortid": "^2.2.8",
"webpack": "^2.3.2",
"webpack-dev-server": "^1.14.1"
}
}