-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.63 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
55
56
57
58
59
60
61
62
{
"name": "bauplan-client",
"version": "0.1.0",
"homepage": "https://seitenbau.github.io/BauPlan-Client",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"history": "^4.7.2",
"http-proxy-middleware": "^0.20.0",
"immutable": "^3.8.2",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "^3.4.1",
"react-scroll-to-component": "^1.0.2",
"redux": "^3.7.2",
"redux-immutable": "^4.0.0",
"redux-saga": "^0.16.2",
"reselect": "^3.0.1",
"sanitize.css": "^5.0.0",
"styled-components": "^3.4.10"
},
"devDependencies": {
"codecov": "^3.6.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.18.2",
"sinon": "^4.5.0",
"tween": "^0.9.0"
},
"scripts": {
"precommit": "lint-staged",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom --coverage",
"test:watch": "react-scripts test --env=jsdom --watchAll",
"eject": "react-scripts eject",
"codecov": "cat ./coverage/lcov.info | codecov"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/global-styles.js",
"!src/registerServiceWorker.js",
"!src/App.js"
]
}
}