-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.84 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
{
"license": "MIT",
"name": "@vesp/frontend",
"description": "Nuxt 3 based frontend for your Vesp project",
"version": "4.0.0",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./assets/components": "./assets/_components.scss",
"./assets/toast": "./assets/_toast.scss"
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"assets"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bezumkin/vesp-frontend.git"
},
"author": "bezumkin",
"bugs": {
"url": "https://github.com/bezumkin/vesp-frontend/issues"
},
"homepage": "https://github.com/bezumkin/vesp-frontend#readme",
"scripts": {
"analyze": "nuxi analyze",
"build": "nuxt-module-build build",
"prepare": "nuxt-module-build prepare && nuxi prepare playground",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"typecheck": "nuxt typecheck",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"stylelint": "stylelint ./assets/**/*.scss",
"stylelint:fix": "stylelint --fix --quiet ./assets/**/*.scss",
"release": "npm run lint && npm run stylelint && npm run prepare && npm run build && npm publish"
},
"dependencies": {
"@bootstrap-vue-next/nuxt": "^0.26.19",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@nuxt/kit": "^3.15.2",
"@nuxtjs/i18n": "^8.5.6",
"@pinia/nuxt": "^0.9.0",
"@vesp/nuxt-fontawesome": "^1.1.0",
"bootstrap-scss": "^5.3.3",
"bootstrap-vue-next": "^0.26.19",
"date-fns": "^3.6.0",
"pinia": "^2.3.0",
"slugify": "^1.6.6",
"text-mask-core": "^5.1.2",
"vue-datepicker-next": "^1.0.3",
"vue-i18n": "^9.14.0",
"vue-toastification": "2.0.0-rc.5"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.7.4",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.15.2",
"@nuxt/cli": "^3.20.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/stylelint-module": "^5.2.0",
"@types/node": "^22.10.5",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"nuxt": "^3.15.2",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"rollup": "^4.30.0",
"sass": "~1.79.6",
"sass-loader": "^16.0.4",
"stylelint": "^16.12.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^14.0.0",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vite-plugin-stylelint": "^6.0.0",
"vue": "^3.5.13",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.2.0"
}
}