forked from laststance/create-react-app-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.44 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
{
"name": "create-react-app-vite",
"version": "0.4.0",
"license": "MIT",
"msw": {
"workerDirectory": "public"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest --run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"lint": "eslint . --ext .ts,.tsx,.js,jsx,cjs,mjs",
"lint:fix": "eslint . --ext .ts,.tsx,.js,jsx,cjs,mjs --fix",
"typecheck": "tsc --noEmit",
"prettier": "prettier --ignore-unknown --write .",
"clean": "rimraf node_modules package-lock.json dist",
"validate": "./scripts/validate",
"remove:tailwind": "scripts/remove_tailwind.js",
"prepare": "husky"
},
"dependencies": {
"clsx": "^2.1.1",
"react": "18.3.0-canary-08a39539f-20231031",
"react-dom": "18.3.0-canary-08a39539f-20231031",
"react-router-dom": "^6.23.1"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.13",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/eslint": "^8.56.7",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/ui": "^1.4.0",
"all-contributors-cli": "^6.26.1",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cross-fetch": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-ts-prefixer": "^1.13.1",
"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-hooks": "^4.6.2",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"msw": "^2.3.1",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"rimraf": "^5.0.7",
"tailwindcss": "^3.4.4",
"ts-expect": "^1.3.0",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.4.0"
}
}