-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.31 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": "couchdb-test",
"version": "0.1.0",
"private": true,
"dependencies": {
"backoff-rxjs": "^6.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"formik": "^1.3.0",
"pouchdb": "^7.0.0",
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0",
"react-redux": "^5.1.0",
"react-redux-form": "^1.16.8",
"react-scripts": "^2.0.5",
"react-test-renderer": "^16.6.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.5",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.2.0",
"rxjs": "^6.3.3",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.83.0",
"yup": "^0.26.6"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:coverage": "react-scripts test --env=jsdom --coverage",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test:coverage"
}
},
"devDependencies": {
"babel-cli": "^6.26.0",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "1.14.3",
"seamless-immutable": "^7.1.4"
},
"browserslist": [
"defaults"
]
}