forked from NdoleStudio/httpsms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2 KB
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": "web",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "cd .. && husky web/.husky",
"api:models": "npx swagger-typescript-api generate -p ../api/docs/swagger.json -o ./shared/types -n api.ts --no-client",
"lint:js": "eslint .",
"lint:style": "stylelint \"**/*.{css,scss,sass,vue}\"",
"lint:prettier": "prettier --check .",
"lint": "pnpm lint:js && pnpm lint:style && pnpm lint:prettier",
"lintfix": "prettier --write --list-different . && pnpm lint:js --fix && pnpm lint:style --fix",
"test": "echo 'No tests configured yet'"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache",
"*.{css,scss,sass,vue}": "stylelint",
"*": "prettier --check --ignore-unknown"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@nuxtjs/google-fonts": "^3.2.0",
"@pinia/nuxt": "^0.11.3",
"chart.js": "^4.5.1",
"chartjs-adapter-moment": "^1.0.1",
"date-fns": "^4.3.0",
"firebase": "^12.13.0",
"flag-icons": "^7.5.0",
"highlight.js": "^11.11.1",
"libphonenumber-js": "^1.13.3",
"moment": "^2.30.1",
"nuxt": "^4.4.6",
"pinia": "^3.0.4",
"prettier": "^3.8.4",
"pusher-js": "^8.5.0",
"qrcode": "^1.5.4",
"sass": "^1.100.0",
"v-phone-input": "^7.0.0",
"vue": "^3.5.34",
"vue-chartjs": "^5.3.3",
"vue-router": "^5.0.7",
"vuetify": "^4.0.7"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@nuxt/eslint": "^1.16.0",
"@types/qrcode": "^1.5.6",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"postcss-html": "^1.8.1",
"stylelint": "^17.13.0",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-config-standard": "^40.0.0",
"typescript": "^5.9.3",
"vuetify-nuxt-module": "^0.19.5"
}
}