-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.47 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "portfolio",
"version": "1.0.0",
"description": "My portfolio with Next.js using TypeScript.",
"license": "MIT",
"private": true,
"author": {
"name": "roottool",
"url": "https://github.com/roottool"
},
"homepage": "https://roottool.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/roottool/portfolio.git"
},
"bugs": {
"url": "https://github.com/roottool/portfolio/issues"
},
"scripts": {
"clean": "rimraf .next .swc",
"dev": "next dev",
"build": "npm-run-all clean --parallel build:*",
"build:next": "next build",
"start": "next start",
"lint": "run-s -c lint:*",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --color --max-warnings=0 .",
"format": "prettier --cache --write .",
"fix": "run-s -c fix:* format",
"fix:eslint": "eslint --color --fix .",
"typecheck": "tsc --noEmit",
"test": "run-s -c test:vitest",
"test:watch": "vitest watch",
"test:vitest": "vitest run --coverage"
},
"msw": {
"workerDirectory": "public"
},
"engines": {
"node": "^22.12.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@radix-ui/react-slot": "1.1.1",
"@radix-ui/react-toolbar": "1.1.1",
"@stitches/react": "1.2.8",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"ky": "1.7.4",
"next": "15.1.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-error-boundary": "5.0.0",
"react-icons": "5.4.0",
"swr": "2.3.0",
"tailwind-merge": "2.6.0",
"tailwindcss-animate": "1.0.7",
"valibot": "0.42.1"
},
"devDependencies": {
"@next/env": "15.1.6",
"@next/eslint-plugin-next": "15.1.6",
"@tailwindcss/postcss": "4.0.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@trivago/prettier-plugin-sort-imports": "5.2.1",
"@types/node": "22.10.10",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "3.0.4",
"cssnano": "7.0.6",
"eslint": "9.19.0",
"eslint-config-flat-gitignore": "1.0.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "15.14.0",
"happy-dom": "16.7.2",
"lefthook": "1.10.10",
"msw": "2.7.0",
"npm-run-all2": "7.0.2",
"postcss": "8.5.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"tailwindcss": "4.0.0",
"typescript": "5.7.3",
"typescript-eslint": "8.21.0",
"vitest": "3.0.4"
}
}