-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"test": "jest",
"build": "tsc --build && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0 && prettier --check .",
"preview": "vite preview",
"eslint-rules-overview": "node eslint-script-rules-overview.js"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "~7.26.7",
"@babel/preset-env": "~7.26.7",
"@babel/preset-react": "~7.26.3",
"@babel/preset-typescript": "~7.26.0",
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "~9.19.0",
"@jest/globals": "~29.7.0",
"@testing-library/dom": "~10.4.0",
"@testing-library/react": "~16.2.0",
"@types/react": "~19.0.8",
"@types/react-dom": "~19.0.3",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"babel-jest": "~29.7.0",
"eslint": "~9.19.0",
"eslint-plugin-react": "~7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "~15.14.0",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"prettier": "~3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "~8.22.0",
"vite": "^6.0.11"
}
}