-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 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
{
"name": "recrec",
"private": false,
"version": "0.0.4",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"build:github": "tsc && vite build --mode github",
"deploy:github": "pnpm run build:github && pnpm gh-pages -m \"Deploy $(git log '--format=format:%H' main -1)\" -d ./dist",
"deploy:vercel": "pnpm run build && cp -r .vercel ./dist/ && vercel ./dist",
"preview": "vite preview"
},
"devDependencies": {
"@floating-ui/dom": "^1.6.5",
"@shoelace-style/shoelace": "^2.15.1",
"@types/d3-format": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@xiaohk/utils": "^0.0.7",
"d3-format": "^3.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lit": "^1.14.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-wc": "^2.1.0",
"gh-pages": "^6.1.1",
"lit": "^3.1.4",
"prettier": "^3.3.1",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-web-components-hmr": "^0.1.3",
"wrangler": "^3.64.0"
}
}