-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "es6-redux-tic-tac-toe",
"version": "1.0.0",
"description": "An example app that uses redux without react",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --reporter nyan",
"dev": "webpack-dev-server --inline --hot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scottmcallister/es6-redux-tic-tac-toe.git"
},
"keywords": [
"ES6",
"redux",
"tic",
"tac",
"toe",
"JS"
],
"author": "Scott McAllister",
"license": "ISC",
"bugs": {
"url": "https://github.com/scottmcallister/es6-redux-tic-tac-toe/issues"
},
"homepage": "https://github.com/scottmcallister/es6-redux-tic-tac-toe#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"espree": "^3.1.3",
"jsdom": "^9.11.0",
"mocha": "^3.2.0",
"mocha-jsdom": "^1.1.0",
"node-libs-browser": "^2.0.0",
"path": "^0.12.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"redux": "^3.6.0"
}
}