forked from dotansimha/graphql-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 688 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 688 Bytes
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
{
"name": "example-vue-villus",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "vite build",
"codegen": "graphql-codegen --config codegen.ts",
"dev": "vite",
"start": "serve -s dist",
"test": "cypress run",
"test:end2end": "start-server-and-test start http://localhost:3000 test"
},
"dependencies": {
"graphql": "^16.6.0",
"villus": "^3.0.0",
"vue": "^3.2.37"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.2.2",
"@vitejs/plugin-vue": "^6.0.0",
"cypress": "15.7.1",
"serve": "14.2.3",
"start-server-and-test": "3.0.0",
"typescript": "^5.0.0",
"vite": "^8.0.0",
"vue-tsc": "^3.0.0"
}
}