-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint src/**/*.ts{,x}",
"format": "prettier --write 'src/**/*.ts{,x}'",
"format-check": "prettier --check 'src/**/*.ts{,x}'",
"type-check": "tsc",
"code-check": "run-p lint type-check format-check build"
},
"dependencies": {
"daisyui": "4.12.23",
"emoji-datasource": "15.1.2",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@tsconfig/strictest": "2.0.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.20",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-tailwindcss": "3.18.0",
"npm-run-all2": "7.0.2",
"postcss": "8.5.1",
"prettier": "3.4.2",
"tailwindcss": "4.0.0",
"typescript": "5.7.3",
"vite": "6.0.11",
"vite-plugin-pwa": "0.21.1",
"vitest": "3.0.4"
}
}