-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
135 lines (135 loc) · 4.1 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "genshin-mirror",
"version": "1.0.0",
"private": true,
"main": "index.ts",
"scripts": {
"dev": "ts-node-dev --respawn --max_old_space_size=4096 index.ts",
"build": "cross-env NODE_ENV=production nuxt build",
"start": "cross-env NODE_ENV=production node -r ts-node/register index.ts",
"lint:js": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"lint": "yarn lint:js && yarn lint:style",
"test": "jest",
"gen": "graphql-codegen --config codegen.yml && prettier --write api/generated/graphql.ts"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,vue}": [
"eslint --fix",
"git add"
],
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/apollo": "^4.0.1-rc.5",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sitemap": "^2.4.0",
"@typegoose/typegoose": "^7.4.8",
"@vue/apollo-composable": "^4.0.0-alpha.12",
"@vue/composition-api": "1.0.4",
"apollo-server-fastify": "^2.25.2",
"bcrypt": "^5.0.0",
"chalk": "^4.1.0",
"class-validator": "^0.13.1",
"consola": "^2.15.0",
"cookieparser": "^0.1.0",
"core-js": "^3.15.2",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"fast-json-stable-stringify": "^2.1.0",
"fastify": "^3.19.2",
"fastify-cookie": "^5.3.1",
"fastify-jwt": "^3.0.0",
"fastify-plugin": "^3.0.0",
"fs-extra": "^10.0.0",
"fuse.js": "^6.4.6",
"graphql": "^15.5.0",
"graphql-tag": "^2.12.4",
"ioredis": "^4.27.6",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"localforage": "^1.9.0",
"lodash": "^4.17.21",
"middie": "^5.2.0",
"mongoose": "5.10.18",
"nanoid": "^3.1.23",
"nodemailer": "^6.6.1",
"nuxt": "^2.15.7",
"nuxt-i18n": "^6.27.0",
"reflect-metadata": "^0.1.13",
"resize-observer-polyfill": "^1.5.1",
"type-graphql": "^1.1.1",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2",
"vuedraggable": "^2.24.3",
"vuex-class": "^0.3.2",
"vuex-persist": "^3.1.3"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@graphql-codegen/cli": "^1.21.7",
"@graphql-codegen/typescript": "^1.23.0",
"@graphql-codegen/typescript-operations": "^1.18.0",
"@graphql-codegen/typescript-vue-apollo": "^2.3.5",
"@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/localforage": "^1.1.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/vuetify": "^1.12.1",
"@types/bcrypt": "^5.0.0",
"@types/crypto-js": "^4.0.2",
"@types/fs-extra": "^9.0.12",
"@types/graphql": "^14.5.0",
"@types/ioredis": "^4.26.6",
"@types/jest": "^26.0.24",
"@types/js-cookie": "^2.2.7",
"@types/jsonwebtoken": "^8.5.4",
"@types/lodash-es": "^4.17.4",
"@types/mongoose": "5.10.3",
"@types/node": "^15.12.2",
"@types/nodemailer": "^6.4.2",
"@vue/test-utils": "^1.2.1",
"apollo": "^2.33.4",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"bluebird": "^3.7.2",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"less": "^4.1.1",
"less-loader": "7.3.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"protobuf-preloader": "^0.0.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"ts-jest": "^27.0.3",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"vue-cli-plugin-apollo": "^0.22.2",
"vue-jest": "^3.0.7"
},
"nodemonConfig": {
"ext": "*.ts",
"watch": "index.ts",
"delay": "2500"
}
}