-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.32 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": "casebound",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev:web": "vite --mode web",
"dev:lively": "vite --mode lively",
"build:web": "npm run build -- --outDir=dist/web --mode web && cp -r web/. dist/web",
"build:lively": "npm run build -- --outDir=dist/lively --mode lively && cp -r lively/. dist/lively",
"preview:web": "vite preview --port 4173 --outDir=dist/web",
"preview:lively": "vite preview --port 4173 --outDir=dist/lively",
"build": "run-p type-check lint && vite build --emptyOutDir",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"updates": "npx npm-check-updates -u"
},
"engines": {
"npm": ">=9.6.5",
"node": ">=20.17.0"
},
"dependencies": {
"@apollo/client": "3.12.7",
"async-mutex": "0.5.0",
"vue": "3.5.13"
},
"devDependencies": {
"@rushstack/eslint-patch": "1.10.5",
"@types/node": "22.10.10",
"@vitejs/plugin-vue": "5.2.1",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "13.0.0",
"@vue/tsconfig": "0.7.0",
"eslint": "8.57.1",
"eslint-plugin-vue": "9.32.0",
"npm-run-all": "4.1.5",
"prettier": "3.4.2",
"typescript": "5.7.3",
"vite": "5.4.11",
"vue-tsc": "^2.2.0"
}
}