-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.16 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
{
"name": "xbooks",
"version": "1.0.0",
"private": true,
"author": "Harsh Choudhary <harsh.hkc@protonmail.com> (https://harshkc.tech/)",
"license": "",
"homepage": "https://localhost:3000/",
"engines": {
"node": "12 || 14 || 15 || 16",
"npm": ">=6"
},
"dependencies": {
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@reach/dialog": "^0.15.0",
"@reach/menu-button": "^0.15.1",
"@reach/tabs": "^0.15.0",
"@reach/tooltip": "^0.15.0",
"@reach/visually-hidden": "^0.15.0",
"bootstrap": "^5.0.1",
"codegen.macro": "^4.1.0",
"debounce-fn": "^4.0.0",
"faker": "^5.5.3",
"history": "^5.0.0",
"match-sorter": "^6.3.0",
"msw": "^0.29.0",
"netlify-cli": "^6.14.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3",
"react-icons": "^4.2.0",
"react-query": "2.1.1",
"react-query-devtools": "2.3.3",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0",
"react-scripts": "^4.0.3",
"stop-runaway-react-effects": "^2.0.0"
},
"devDependencies": {
"@testing-library/cypress": "^7.0.6",
"@testing-library/jest-dom": "^5.13.0",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"cross-env": "^7.0.3",
"cypress": "^7.5.0",
"cypress-hmr-restarter": "^2.0.2",
"eslint-plugin-cypress": "^2.11.3",
"husky": "4.3.8",
"inquirer": "^8.1.0",
"is-ci": "^3.0.0",
"is-ci-cli": "^2.2.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"react-test-renderer": "^17.0.2",
"resolve": "^1.20.0",
"serve": "^12.0.0",
"start-server-and-test": "^1.12.5",
"whatwg-fetch": "^3.6.2"
},
"scripts": {
"start": "react-scripts start",
"start:cli": "cross-env BROWSER=none react-scripts start",
"build": "react-scripts build --profile",
"test": "react-scripts test",
"test:coverage": "cross-env CI=true npm test -- --env=jsdom --coverage",
"upload:test-report": "./node_modules/.bin/codecov",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --watch --runInBand",
"cy:install": "cypress install",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test:e2e": "start-server-and-test start:cli http://localhost:3000/list cy:open",
"test:e2e:run": "start-server-and-test serve http://localhost:8811/list cy:run",
"serve": "serve --no-clipboard --single --listen 8811 build",
"lint": "eslint . --cache-location node_modules/.cache/eslint",
"format": "prettier --write \"**/*.+(js|json|css|md|mdx|html)\"",
"setup": "node setup"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"keywords": [],
"msw": {
"workerDirectory": "public"
}
}