-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "react-ts-vite",
"version": "1.0.0",
"author": "2rohityadav",
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/2rohtyadav/react-ts-vite.git"
},
"dependencies": {
"@vitejs/plugin-react": "^4.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^5.2.13"
},
"devDependencies": {
"@testing-library/dom": "^10.1.0",
"@testing-library/react": "^16.0.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^9.4.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.1",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
}
}