-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.99 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "vite-ssg build",
"codegen": "graphql-codegen --config codegen.yml",
"dev": "vite --port 4000",
"lint": "eslint .",
"mock-server": "tsc -p server/tsconfig.json && node server/dist/index.js schema.graphql",
"patch-apollo": "tsc -p src/scripts/tsconfig.json && node src/scripts/dist/patch-apollo-client.js",
"postinstall": "npm run patch-apollo",
"preview": "vite preview",
"preview-https": "serve dist",
"test:e2e": "cypress open",
"test:unit": "vitest",
"test": "vitest",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@graphql-codegen/cli": "^2.8.0",
"@popperjs/core": "^2.11.5",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@vue/apollo-composable": "4.0.0-alpha.18",
"@vue/composition-api": "^1.7.0",
"@vuepic/vue-datepicker": "^3.3.1",
"@vueuse/core": "^8.9.1",
"@vueuse/head": "^0.7.6",
"bootstrap": "^5.2.0",
"bootstrap-icons": "^1.9.1",
"graphql": "^16.5.0",
"nprogress": "^0.2.0",
"pinia": "^2.0.14",
"prism-theme-vars": "^0.2.3",
"uuid": "^8.3.2",
"vue": "^3.2.37",
"vue-demi": "^0.13.2",
"vue-i18n": "^9.1.10",
"vue-router": "4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@graphql-codegen/cli": "2.8.0",
"@graphql-codegen/introspection": "2.2.0",
"@graphql-codegen/typescript": "2.7.1",
"@graphql-codegen/typescript-graphql-files-modules": "2.2.0",
"@graphql-codegen/typescript-operations": "2.5.1",
"@graphql-codegen/typescript-vue-apollo": "^3.3.1",
"@iconify-json/carbon": "^1.1.6",
"@intlify/vite-plugin-vue-i18n": "^4.0.0",
"@types/bootstrap": "^5.1.13",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/test-utils": "^2.0.2",
"apollo-server": "^3.10.0",
"casual": "^1.6.2",
"critters": "^0.0.16",
"cross-env": "^7.0.3",
"cypress": "^10.3.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.2.0",
"graphql-tag": "^2.0.0",
"https-localhost": "^4.7.1",
"markdown-it-link-attributes": "^4.0.0",
"markdown-it-prism": "^2.2.4",
"pnpm": "^7.5.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"sass": "^1.53.0",
"typescript": "^4.7.4",
"unplugin-auto-import": "^0.9.2",
"unplugin-vue-components": "^0.21.1",
"vite": "^2.9.14",
"vite-plugin-graphql-codegen": "^1.7.0",
"vite-plugin-inspect": "^0.5.1",
"vite-plugin-pages": "^0.25.0",
"vite-plugin-pwa": "^0.12.2",
"vite-plugin-vue-markdown": "^0.20.1",
"vite-ssg": "^0.20.2",
"vite-ssg-sitemap": "^0.2.7",
"vitest": "^0.17.1",
"vue-tsc": "^0.38.3"
},
"peerDependencies": {
"graphql-tag": "^2.0.0",
"react": "^18.2.0"
}
}