-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
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": "vue-3-tmp",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"clean": "npx rimraf node_modules pnpm-lock.yaml dist",
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"test": "playwright test",
"test:build": "pnpm install && pnpm build",
"test:assert": "playwright test"
},
"dependencies": {
"@sentry/vue": "latest || *",
"pinia": "^3.0.0",
"vue": "^3.4.15",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@playwright/test": "~1.50.0",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/core": "latest || *",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^18.19.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/tsconfig": "^0.5.1",
"http-server": "^14.1.1",
"npm-run-all2": "^6.2.0",
"typescript": "~5.3.0",
"vite": "^5.4.11",
"vue-tsc": "^1.8.27"
},
"volta": {
"extends": "../../package.json"
}
}