-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "concurrently \"nuxt dev\" \"yarn codegen --watch\"",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint": "yarn lint:js",
"lint:fix": "yarn lint:js --fix",
"codegen": "graphql-codegen --config codegen.ts"
},
"devDependencies": {
"@graphql-codegen/cli": "3.3.0",
"@graphql-codegen/client-preset": "3.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@typescript-eslint/parser": "^5.58.0",
"concurrently": "^8.0.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nuxt": "^3.4.3",
"prettier": "^2.8.7",
"typescript": "^5.0.4"
},
"dependencies": {
"@nuxtjs/tailwindcss": "^6.6.8",
"@tanstack/vue-query": "^4.27.0",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"jwt-decode": "^3.1.2",
"nanoid": "^4.0.2"
}
}