-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 935 Bytes
/
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
{
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"test:watch": "jest --watch",
"ts-check": "tsc --noEmit --watch",
"eslint": "eslint .",
"format": "prettier -w \"**/*.{ts,tsx,html}\"",
"format:check": "prettier -c \"**/*.{ts,tsx,html}\""
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.5",
"typescript": "^4.9.5",
"typescript-eslint": "0.0.1-alpha.0",
"vite": "^3.2.7"
}
}