-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.8 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
{
"name": "awesome-address-book",
"version": "0.1.2",
"description": "This projects shows a basic address book built with ReactJS.",
"license": "MIT",
"homepage": "https://cmacdonnacha.github.io/awesome-address-book/",
"scripts": {
"analyze": "npm run build && source-map-explorer 'build/static/js/*.js'",
"build": "react-scripts build",
"start": "react-scripts start",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"eject": "react-scripts eject",
"lint": "tsc --noEmit && eslint . --ext .ts,.tsx",
"test:no-watch": "react-scripts test --watchAll=false --env=jest-environment-jsdom-sixteen",
"test:coverage": "react-scripts test --coverage --watchAll=false --env=jest-environment-jsdom-sixteen",
"test:e2e": "cypress run",
"test:e2e:ci": "cypress run --record --key ab8af296-08ae-401a-8e19-1a13c6b31eba --config baseUrl=https://cmacdonnacha.github.io/awesome-address-book",
"test:e2e:open": "cypress open"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint",
"pre-push": "npm run test:no-watch"
}
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,ts,tsx}",
"!/node_modules/",
"!src/utils/**/*",
"!src/index.tsx",
"!src/serviceWorker.ts",
"!src/react-app-env.d.ts"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@reduxjs/toolkit": "^1.3.4",
"axios": "^0.21.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"styled-components": "^5.0.1",
"styled-icons": "^10.2.1",
"typescript": "^3.8.3"
},
"devDependencies": {
"@testing-library/cypress": "^6.0.0",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.2",
"@testing-library/user-event": "^10.0.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.30",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-plugin-macros": "^2.8.0",
"cypress": "^4.7.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.5",
"jest-environment-jsdom-sixteen": "^1.0.3",
"prettier": "^2.0.1",
"pretty-quick": "^2.0.1",
"react-scripts": "3.4.1",
"source-map-explorer": "^2.4.2"
}
}