forked from antfu-collective/vitesse-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite --port 3333 --open",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"codegen": "graphql-codegen --config codegen.ts"
},
"dependencies": {
"@apollo/client": "^3.7.11",
"@vue/apollo-composable": "^4.0.0-beta.4",
"@vue/compat": "^3.2.47",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"vue": "^3.2.47",
"vue-router": "^4.1.6",
"vuex": "^4.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.3.0",
"@graphql-codegen/client-preset": "^3.0.0",
"@graphql-codegen/introspection": "3.0.1",
"@types/node": "^18.14.6",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/test-utils": "^2.3.0",
"autoprefixer": "^10.4.13",
"jsdom": "^21.1.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.1.4",
"vite-plugin-pages": "^0.28.0",
"vitest": "^0.29.2",
"vue-tsc": "^1.2.0"
}
}