-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.79 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
{
"name": "react-vite-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "vite dev --port 3000",
"test": "jest",
"lint": "npx eslint ./src --fix --ext .ts --ext .tsx ",
"check-types": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krau5/react-vite-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/krau5/react-vite-template/issues"
},
"homepage": "https://github.com/krau5/react-vite-template#readme",
"devDependencies": {
"@emotion/jest": "^11.13.0",
"@swc/core": "^1.9.2",
"@swc/jest": "^0.2.37",
"@tanstack/router-plugin": "^1.81.9",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.2"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@reduxjs/toolkit": "^2.3.0",
"@tanstack/react-router": "^1.81.10",
"emotion-normalize": "^11.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2"
},
"type": "module"
}