-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.88 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "vite-graphql-setup",
"version": "0.0.0",
"scripts": {
"build": "vue-tsc --noEmit && vite build",
"codegen": "graphql-codegen --config codegen.yml",
"dev": "vite",
"prepare": "husky install",
"prettier:check": "prettier --list-different \"**/*.{ts,tsx,vue,css,json}\"",
"prettier:write": "prettier --config ./.prettierrc.js -w .",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@vue/apollo-composable": "^4.0.0-alpha.16",
"@vueuse/core": "^8.3.1",
"graphql": "^15.8.0",
"graphql-tag": "^2.12.6",
"vue": "^3.2.33",
"vue-router": "^4.0.4"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/near-operation-file-preset": "^2.2.9",
"@graphql-codegen/typescript": "^2.4.8",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@graphql-codegen/typescript-vue-apollo": "^3.2.9",
"@graphql-tools/mock": "^8.6.8",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/vue": "^6.5.1",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/compiler-sfc": "^3.2.33",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"autoprefixer": "^10.4.4",
"babel-core": "^7.0.0-bridge.0",
"cross-fetch": "^3.1.5",
"deepmerge": "^4.2.2",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"json-sort-cli": "^2.0.13",
"lint-staged": "^12.4.0",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"vite": "^2.9.5",
"vue-tsc": "^0.34.10"
}
}