-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.67 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.67 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
{
"name": "wannfrei",
"version": "1.7.2",
"private": true,
"scripts": {
"dev": "rm -r .next | next dev",
"build": "rm -r .next | next build",
"preview": "vercel pull --yes --environment=preview && vercel build && vercel deploy --archive=tgz --prebuilt",
"start": "next start",
"format": "prettier --write --list-different .",
"typecheck": "tsc --noEmit --noUnusedLocals --noUnusedParameters --composite false",
"bump": "npm version -m 'Bump version to %s' $npm_config_vers",
"bump:dev": "npm version $npm_config_vers --git-tag-version false && git commit -a -m 'Bump version to development'",
"unit-test": "vitest",
"unit-test:preview": "vitest --ui --watch",
"check": "npm run format && npm run typecheck && npm run unit-test"
},
"dependencies": {
"@sentry/nextjs": "^9.40.0",
"@svgr/webpack": "^8.1.0",
"@vercel/analytics": "^1.5.0",
"axios": "^1.11.0",
"minisearch": "^7.1.2",
"next": "15.3.8",
"next-themes": "^0.4.6",
"nuqs": "^2.4.3",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"raw-loader": "^4.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/ui": "^3.2.4",
"jsdom": "^26.1.0",
"tailwindcss": "^4.1.7",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}