forked from GEWIS/sudosos-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.48 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "sudodos-frontend",
"type": "module",
"workspaces": [
"apps/point-of-sale",
"apps/dashboard",
"lib/common",
"lib/themes"
],
"scripts": {
"dev-libraries": "concurrently --kill-others \"yarn common:dev\" \"yarn themes:dev\"",
"dev-dashboard": "concurrently --kill-others \"yarn dashboard:dev\" \"yarn dev-libraries\"",
"dev-dashboard:prod": "concurrently --kill-others \"yarn dashboard:dev:prod\" \"yarn dev-libraries\"",
"dev-dashboard:test": "concurrently --kill-others \"yarn dashboard:dev:test\" \"yarn dev-libraries\"",
"dev-dashboard:local": "concurrently --kill-others \"yarn dashboard:dev:local\" \"yarn dev-libraries\"",
"dev-pos": "concurrently --kill-others \"yarn point-of-sale:dev\" \"yarn dev-libraries\"",
"dev-pos:prod": "concurrently --kill-others \"yarn point-of-sale:dev:prod\" \"yarn dev-libraries\"",
"dev-pos:test": "concurrently --kill-others \"yarn point-of-sale:dev:test\" \"yarn dev-libraries\"",
"dev-pos:local": "concurrently --kill-others \"yarn point-of-sale:dev:local\" \"yarn dev-libraries\"",
"build-libraries": "concurrently \"yarn common:build\" \"yarn themes:build\"",
"build-dashboard": "yarn workspaces foreach -Rpt --from 'sudosos-dashboard' run build",
"build-pos": "yarn workspaces foreach -Rpt --from '@sudosos/point-of-sale' run build",
"build": "yarn workspaces foreach -Rpt --from '{@sudosos/point-of-sale,sudosos-dashboard}' run build",
"lint": "yarn build-libraries && yarn workspaces foreach -Rpt --from '{@sudosos/point-of-sale,sudosos-dashboard}' run lint",
"lint-fix": "yarn build-libraries && yarn workspaces foreach -Rpt --from '{@sudosos/point-of-sale,sudosos-dashboard}' run lint-fix",
"format": "prettier --ignore-path .gitignore --check .",
"format-fix": "prettier --ignore-path .gitignore --write .",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@gewis/splash": "^2.4.0",
"@primeuix/themes": "^1.1.1",
"@sudosos/sudosos-client": "github:GEWIS/sudosos-client#b1b1cbaffcba287528757384430d9bbe2ad347cf",
"@tailwindcss/vite": "^4.1.3",
"axios": "^1.7.7",
"dinero.js": "^1.9.1",
"fuse.js": "^7.0.0",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"pinia": "^2.1.3",
"primeicons": "^6.0.1",
"primevue": "^4.3.5",
"sass": "^1.63.6",
"tailwindcss": "^4.1.3",
"tailwindcss-primeui": "^0.6.1",
"vue": "^3.3.4",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@gewis/eslint-config-typescript": "^2.4.0",
"@gewis/eslint-config-vue": "^2.4.0",
"@gewis/prettier-config": "^2.2.2",
"@intlify/eslint-plugin-vue-i18n": "^4.0.1",
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node-lts": "^20.1.3",
"@types/dinero.js": "^1.9.4",
"@types/lodash": "^4.17.12",
"@types/node": "^22.7.7",
"@typescript-eslint/parser": "^8.29.1",
"@vitejs/plugin-vue": "^5.0.2",
"@vue/tsconfig": "^0.5.1",
"concurrently": "^8.2.2",
"eslint": "^9.24.0",
"husky": ">=6",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": ">=10",
"npm-run-all": "^4.1.5",
"pinst": ">=2",
"prettier": "^3.1.1",
"socket.io-client": "^4.8.1",
"typescript": "~5.5.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^4.2.4",
"vue-eslint-parser": "^10.1.3",
"vue-tsc": "^2.0.29",
"yaml-eslint-parser": "^1.3.0"
},
"packageManager": "yarn@4.4.1",
"lint-staged": {
"*": "yarn format-fix"
}
}