-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.35 KB
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
80
81
82
83
84
85
86
87
88
{
"name": "@laststance/create-react-app",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.25.0",
"volta": {
"node": "22.21.1"
},
"msw": {
"workerDirectory": "public"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"prettier": "prettier --ignore-unknown --write .",
"clean": "rimraf node_modules pnpm-lock.yaml dist",
"validate": "./scripts/validate",
"remove:tailwind": "scripts/remove_tailwind.js",
"prepare": "husky"
},
"dependencies": {
"clsx": "^2.1.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router": "^7.15.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.2.4",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/eslint": "^9.6.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.3.0",
"@vitest/ui": "^4.1.5",
"all-contributors-cli": "^6.26.1",
"concurrently": "^9.2.1",
"cross-fetch": "^4.1.0",
"eslint": "^10.2.1",
"eslint-config-ts-prefixer": "^4.2.0",
"eslint-import-resolver-node": "^0.3.10",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"jsdom": "^29.1.0",
"lint-staged": "^16.4.0",
"msw": "^2.13.6",
"postcss": "^8.5.12",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"rimraf": "^6.1.3",
"tailwindcss": "^4.2.4",
"ts-expect": "^1.3.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-svgr": "^5.2.0",
"vitest": "^4.1.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"@tailwindcss/oxide",
"esbuild",
"msw",
"unrs-resolver"
]
}
}