-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "blackjack",
"version": "0.0.1",
"private": true,
"devDependencies": {
"babel-core": "^6.14.0",
"babel-polyfill": "^6.13.0",
"chai": "3.5.0",
"chai-enzyme": "0.4.2",
"enzyme": "2.2.0",
"flatten": "^1.0.2",
"ignore-styles": "1.2.0",
"jsdom": "8.5.0",
"mocha": "2.4.5",
"mocha-jsdom": "1.1.0",
"react-addons-test-utils": "15.0.2",
"react-scripts": "0.2.3",
"redux-devtools": "^3.3.1",
"sinon": "1.17.4",
"sinon-chai": "2.8.0"
},
"dependencies": {
"cards": "^0.1.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"shuffle-array": "^1.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "mocha --ui bdd -r bin/mocha-bootload $(find src -name '*.spec.js')",
"test:watch": "npm test -- --watch"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
},
"homepage": "https://timkindberg.github.io/blackjack-react-redux"
}