-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
74 lines (74 loc) · 2.21 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
{
"name": "kut",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "yarn run format && yarn run lint && nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"start": "node -C production .output/server/index.mjs",
"lint": "eslint . --ext \".ts,.js,.vue,.json\" --fix",
"format": "prettier --write \"src/**/*.{js,ts,json,vue}\"",
"spell-check": "cspell .",
"typecheck": "nuxt typecheck",
"postinstall": "npx simple-git-hooks && nuxt prepare"
},
"simple-git-hooks": {
"pre-commit": "yarn run lint && yarn run format",
"commit-msg": "yarn run commitlint --edit $1"
},
"dependencies": {
"@headlessui/vue": "1.7.16",
"@pinia/nuxt": "0.5.1",
"@typegoose/typegoose": "12.0.0",
"bcryptjs": "2.4.3",
"celebrate": "15.0.3",
"cors": "2.8.5",
"dayjs": "1.11.10",
"express": "4.18.2",
"express-timeout-handler": "2.2.2",
"express-useragent": "1.0.15",
"jsonwebtoken": "9.0.2",
"jwt-decode": "3.1.2",
"mongoose": "8.0.2",
"morgan": "1.10.0",
"open-graph-scraper": "6.3.2",
"pinia": "2.1.7",
"prettier-plugin-tailwindcss": "0.5.7",
"qrcode": "1.5.3",
"vue-command-palette": "0.2.3",
"vue-frappe-chart": "0.1.10",
"vue-tiny-validate": "0.2.4",
"winston": "3.11.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@iconify-json/ph": "1.1.8",
"@iconify-json/tabler": "1.1.100",
"@kolhe/eslint-config": "1.2.6",
"@nuxt/devtools": "1.0.4",
"@nuxt/ui": "npm:@nuxt/ui-edge@latest",
"@pinia-plugin-persistedstate/nuxt": "1.2.0",
"@types/bcryptjs": "2.4.6",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/express-useragent": "1.0.5",
"@types/jsonwebtoken": "9.0.5",
"@types/morgan": "1.9.9",
"@types/node": "20.10.1",
"@vueuse/core": "10.6.1",
"@vueuse/integrations": "10.6.1",
"@vueuse/nuxt": "10.6.1",
"cspell": "8.1.0",
"eslint": "8.54.0",
"eslint-plugin-prettier": "5.0.1",
"nuxt": "3.8.2",
"nuxt-icon": "0.6.6",
"prettier": "3.1.0",
"simple-git-hooks": "2.9.0",
"typescript": "5.3.2",
"vue-tsc": "1.8.24"
}
}