-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "tic-tac-toe",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"build": "webpack --progress --colors",
"start": "eslint src/**.js && npm run build && webpack-dev-server --hot --inline --content-base ./",
"start-fast": "npm run build && webpack-dev-server --hot --inline --content-base ./"
},
"author": "wyeo",
"license": "ISC",
"jest": {
"testPathIgnorePatterns": [
"__snapshots__"
]
},
"dependencies": {
"babel-eslint": "^7.1.1",
"react": "^15.0.0-rc.2",
"react-dom": "^15.0.0-rc.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.25.0",
"enzyme": "^2.7.1",
"eslint": "^3.15.0",
"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",
"jest": "^18.1.0",
"jest-enzyme": "^2.1.2",
"open-browser-webpack-plugin": "0.0.2",
"react-addons-test-utils": "^15.0.0-rc.2",
"react-test-renderer": "^15.4.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
}
}