-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.88 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
{
"name": "tic-tac-toe-react",
"version": "0.0.1",
"description": "Tic Tac Toe game written with modern FrontEnd stack",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/babel-node --presets es2015,react,stage-0 ./node_modules/mocha/bin/_mocha",
"test-watch": "node_modules/.bin/babel-node --presets es2015,react,stage-0 ./node_modules/mocha/bin/_mocha --watch",
"test-cov": "node_modules/.bin/babel-node --presets es2015,react,stage-0 node_modules/isparta/bin/isparta cover ./node_modules/mocha/bin/_mocha -- --timeout 60000",
"watch": "webpack-dev-server --watch --color --hot --inline",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lingvokot/Tic-Tac-Toe-React.git"
},
"keywords": [
"react",
"game"
],
"author": "Lingvokot <https://github.com/Lingvokot/>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lingvokot/Tic-Tac-Toe-React/issues"
},
"engines": {
"node": ">= 4.0"
},
"homepage": "https://github.com/Lingvokot/Tic-Tac-Toe-React#readme",
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-core": "^6.1.2",
"babel-eslint": "^4.1.4",
"babel-loader": "^6.0.1",
"babel-polyfill": "^6.2.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.3.0",
"codeclimate-test-reporter": "^0.1.1",
"eslint": "^1.7.3",
"eslint-plugin-react": "^3.5.1",
"immutable": "^3.7.5",
"isparta": "^3.5.3",
"jsdom": "^6.5.1",
"mocha": "^2.3.3",
"mocha-jsdom": "^1.0.0",
"react": "^0.14.2",
"react-addons-test-utils": "^0.14.2",
"react-dom": "^0.14.2",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.0.0",
"redux": "^3.0.4",
"redux-devtools": "^2.1.5",
"redux-thunk": "^1.0.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
}
}