-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "@uralys/website",
"version": "0.3.0",
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"ncu": "npm-check-updates",
"eslint": "eslint . --cache --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"lint": "npm run eslint && npm run typecheck"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"styled-components": "^6.1.3",
"taverne": "^1.25.8"
},
"devDependencies": {
"@modyfi/vite-plugin-yaml": "^1.0.4",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.1",
"npm-check-updates": "^16.14.12",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vercel": "^33.0.1",
"vite": "^4.5.1",
"vite-plugin-top-level-await": "^1.4.1"
}
}