-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "formik-saga",
"version": "1.0.0",
"private": true,
"dependencies": {
"@curi/core": "1.0.0-beta.25",
"@curi/redux": "^1.0.0-beta.2",
"@hickory/browser": "^1.0.0-beta.5",
"axios": "0.17.1",
"formik": "^0.10.5",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-data-structures": "^0.1.6",
"redux-saga": "0.16.0",
"styled-components": "3.1.4",
"yup": "^0.24.0"
},
"devDependencies": {
"react-scripts": "1.1.0",
"redux-devtools-extension": "^2.13.2",
"serve": "^6.4.9",
"standard": "^10.0.3"
},
"scripts": {
"start": "NODE_PATH=src/ react-scripts start",
"now-start": "serve -s ./build",
"build": "NODE_PATH=src/ react-scripts build",
"test": "NODE_PATH=src/ react-scripts test --env=jsdom",
"coverage": "yarn test -- --coverage",
"lint": "standard --fix"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!node_modules/",
"!src/state/store.js",
"!src/state/sagas/*",
"!src/index.js"
]
}
}