-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.02 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
{
"name": "rickandmorty",
"version": "0.7.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "^4.11.3",
"@reduxjs/toolkit": "^1.5.1",
"@rtk-incubator/rtk-query": "^0.2.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"idb-keyval": "^6.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"redux-persist": "^6.0.0",
"web-vitals": "^1.0.1",
"workbox-background-sync": "^6.4.2",
"workbox-broadcast-update": "^6.4.2",
"workbox-cacheable-response": "^6.4.2",
"workbox-core": "^6.4.2",
"workbox-expiration": "^6.4.2",
"workbox-google-analytics": "^6.4.2",
"workbox-navigation-preload": "^6.4.2",
"workbox-precaching": "^6.4.2",
"workbox-range-requests": "^6.4.2",
"workbox-routing": "^6.4.2",
"workbox-strategies": "^6.4.2",
"workbox-streams": "^6.4.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"serve": "serve -s build -l 3000",
"eject": "react-scripts eject",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "npm run build && start-server-and-test serve :3000 cy:run",
"lint": "eslint '*/**/*.{js,ts,tsx}' --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"lint:ci": "npm run lint -- --quiet",
"format": "prettier --write src/**/*.ts{,x}",
"prepare-commit-msg-unix": "exec < /dev/tty && git cz --hook || true",
"prepare-commit-msg-win": "prepare-commit-msg",
"release": "HUSKY=0 release-it --disable-metrics --ci",
"postinstall": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.1",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/react-swipeable-views": "^0.13.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"commitizen": "^4.2.3",
"cypress": "^7.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"release-it": "^14.6.1",
"serve": "^11.3.2",
"start-server-and-test": "^1.12.1",
"typescript": "^4.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}