-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.14 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
{
"private": true,
"scripts": {
"build": "prisma generate && nuxt build",
"dev": "concurrently \"nuxt dev\" \"graphql-codegen --watch\"",
"generate": "graphql-codegen && nuxt generate",
"predev": "graphql-codegen",
"prebuild": "graphql-codegen",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache",
"*.{css,scss,sass,html,vue}": "stylelint",
"*.**": "prettier --check --ignore-unknown"
},
"prisma": {
"schema": "database/schema.prisma"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@graphql-codegen/cli": "^3.3.0",
"@graphql-codegen/typescript": "^3.0.3",
"@graphql-codegen/typescript-graphql-request": "^4.5.9",
"@graphql-codegen/typescript-operations": "^3.0.3",
"@nuxtjs/apollo": "^5.0.0-alpha.6",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@rushstack/eslint-patch": "^1.2.0",
"@types/lodash": "^4.14.192",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vueuse/core": "^9.13.0",
"@vueuse/nuxt": "^9.13.0",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"eslint": "^8.36.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nuxt": "^3.4.1",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"stylelint": "^15.2.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^30.0.1",
"tailwindcss": "^3.2.7",
"typescript": "^5.5.4"
},
"dependencies": {
"@apollo/server": "^4.5.0",
"@as-integrations/h3": "^1.1.5",
"@prisma/client": "^5.18.0",
"@vercel/analytics": "^1.0.2",
"graphql": "^16.6.0",
"lodash": "^4.17.21",
"nuxt-graphql-server": "^1.2.2",
"prisma": "^5.18.0",
"vue-virtual-scroller": "^2.0.0-beta.8",
"vue3-popper": "^1.5.0"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}