-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.29 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
{
"name": "react-app-template-ts",
"homepage": "https://manoldonev.github.io/react-app-template-ts",
"version": "0.5.0",
"private": true,
"engines": {
"node": ">=20.9.0"
},
"type": "module",
"dependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.2.1",
"@types/node": "^20.11.19",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^5.0.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.0.0",
"gh-pages": "^6.1.1",
"husky": "^9.0.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"source-map-resolve": "^0.6.0",
"tsc-files": "^1.1.3",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.1",
"vite": "^5.1.3",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.3.0",
"web-vitals": "^3.0.0",
"whatwg-fetch": "^3.6.2"
},
"scripts": {
"start": "vite",
"build": "vite build",
"prepare": "husky install",
"predeploy": "pnpm run build",
"deploy": "gh-pages -d build",
"test": "vitest",
"test:related": "vitest related ./src/**/*.{ts,tsx} --run --passWithNoTests",
"lint": "eslint src/**/*.{ts,tsx} --quiet",
"lint:fix": "eslint --fix --ext src/**/*.{ts,tsx}",
"prettier": "prettier --check src"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]"
}