-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.85 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
{
"name": "ns8-user-manager",
"version": "1.0.2",
"type": "module",
"private": true,
"scripts": {
"dev": "vite --host",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview --host",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.16.0",
"@fontsource/poppins": "^5.0.8",
"@fortawesome/free-regular-svg-icons": "github:nethesis/Font-Awesome#regular",
"@fortawesome/free-solid-svg-icons": "github:nethesis/Font-Awesome#solid",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@nethesis/nethesis-light-svg-icons": "github:nethesis/Font-Awesome#ns-light",
"@nethesis/nethesis-solid-svg-icons": "github:nethesis/Font-Awesome#ns-solid",
"@rushstack/eslint-patch": "^1.3.3",
"@tailwindcss/forms": "^0.5.6",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.0.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.16",
"eslint": "^9.16.0",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.0.11",
"npm-run-all2": "^6.1.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"tailwindcss": "^3.3.3",
"typescript": "~5.4.0",
"vite": "^6.0.2",
"vue-tsc": "^2.0.19"
},
"dependencies": {
"@headlessui/vue": "^1.7.16",
"@nethesis/vue-components": "^1.0.0",
"axios": "^1.6.2",
"pinia": "^2.1.7",
"vue": "^3.3.7",
"vue-i18n": "^9.13.1",
"vue-router": "^4.3.2"
}
}