-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.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
{
"name": "nuxtjs3-boilerplate",
"version": "0.0.1",
"description": "Nuxt.js v3 boilerplate",
"author": "Fabien Roy <[email protected]> (https://rocknprog.com)",
"license": "MIT",
"scripts": {
"build": "nuxt build",
"build:schema": "node scripts/build-schema.ts",
"dev": "nuxt dev",
"generate": "nuxt generate",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:staged": "lint-staged",
"prepare": "husky install",
"prettier": "prettier .",
"prettier:write": "prettier . --write",
"preview": "nuxt preview",
"start": "node .output/server/index.mjs"
},
"dependencies": {
"@apollo/client": "^3.5.6",
"@nuxt3/apollo-module": "^0.0.9",
"@nuxt3/graphql-codegen-module": "^0.0.7",
"@vue/composition-api": "^1.6.0",
"apollo-server-core": "^3.6.7",
"apollo-server-express": "^3.7.0",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"graphql": "^15.3.0",
"graphql-compose": "^9.0.8",
"graphql-compose-mongoose": "^9.7.1",
"mongoose": "^6.3.2",
"mongoose-timestamp": "^0.6.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.4.8",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@graphql-codegen/typescript-vue-apollo": "^3.2.9",
"@types/mongoose": "^5.11.97",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@vue/cli-plugin-eslint": "^5.0.4",
"@vue/cli-plugin-typescript": "^5.0.4",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"eslint": "^8.14.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.0.0-beta.4",
"husky": "^7.0.0",
"lint-staged": "^12.4.1",
"nuxt3": "^3.0.0-rc.2-27530889.9e5a3cd",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint . --quiet --fix"
],
"*.{json,md,html,js,ts,vue}": [
"prettier . --write"
]
}
}