-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
111 lines (111 loc) · 3.17 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "library-search",
"version": "3.0.0",
"private": false,
"homepage": "https://marcusbelcher.github.io/google-books-api-example",
"repository": {
"type": "git",
"url": "git@github.com:marcusbelcher/google-books-api-example.git"
},
"license": "MIT",
"author": "Marcus Belcher",
"scripts": {
"build": "REACT_APP_VERSION=$npm_package_version react-scripts build",
"predeploy": "yarn run build",
"deploy": "yarn version --major && gh-pages -d build",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint-staged": "lint-staged",
"test": "REACT_APP_VERSION=$npm_package_version react-scripts test",
"test:debug": "REACT_APP_VERSION=$npm_package_version react-scripts --inspect-brk test --runInBand --no-cache",
"test:coverage": "yarn test --coverage --watchAll=false",
"test:staged": "cross-env CI=true react-scripts test --coverage --watchAll=false --env=jsdom --findRelatedTests",
"start": "REACT_APP_VERSION=$npm_package_version react-scripts start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint src/ --fix",
"npm run test:staged",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@material-ui/styles": "^4.0.1",
"axios": "^0.18.0",
"material-design-icons": "^3.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-lottie": "^1.2.3",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-scripts": "3.0.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.13",
"@types/material-ui": "^0.21.6",
"@types/node": "11.11.7",
"@types/node-sass": "^4.11.0",
"@types/react": "16.8.8",
"@types/react-dom": "16.8.3",
"@types/react-lottie": "^1.2.2",
"@types/react-redux": "^7.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/redux-logger": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-sonarjs": "^0.3.0",
"faker": "^4.1.0",
"gh-pages": "^2.0.1",
"husky": "^2.3.0",
"jest-canvas-mock": "^2.1.0",
"lint-staged": "^8.1.7",
"node-sass": "^4.12.0",
"prettier": "^1.17.1",
"redux-logger": "^3.0.6",
"snyk": "^1.166.1",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.4.5"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"src/**/**/*.{ts,tsx}",
"src/*.{ts,tsx}",
"!src/index.tsx",
"!src/serviceWorker.ts"
]
}
}