-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "redux-saga-playground",
"version": "1.0.0",
"description": "Messing around with side-effects",
"main": "index.js",
"scripts": {
"test": "BABEL_ENV=test jest --coverage",
"start": "node dev-server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"redux-saga": "^0.16.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"i": "^0.3.6",
"jest": "^23.4.0",
"jsdom": "^11.11.0",
"npm": "^6.1.0",
"raf": "^3.4.0",
"sinon": "^6.1.3"
},
"jest": {
"setupFiles": [
"./test/jest.config.js"
],
"testMatch": [
"/**/*.spec.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testURL": "http://localhost:3000/"
}
}