-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 994 Bytes
/
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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "concurrently \"nuxt dev\" \"yarn codegen\"",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"codegen": "graphql-codegen --require dotenv/config --config codegen.ts --watch"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.0.0",
"@graphql-codegen/client-preset": "^2.0.0",
"@nuxtjs/apollo": "^5.0.0-alpha.5",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@pinia-plugin-persistedstate/nuxt": "^1.0.0",
"concurrently": "^7.6.0",
"eslint": "^8.30.0",
"eslint-plugin-vue": "^9.9.0",
"nuxt": "^3.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@mdi/js": "^7.0.96",
"@pinia/nuxt": "^0.4.6",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"pinia": "^2.0.28",
"sass": "^1.57.1",
"vite-plugin-vuetify": "^1.0.0",
"vuetify": "^3.0.2"
}
}