-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 2.04 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
{
"name": "sudodos-frontend",
"workspaces": [
"apps/point-of-sale",
"apps/dashboard",
"lib/common"
],
"scripts": {
"dev-libraries": "concurrently --kill-others \"yarn common:dev\"",
"dev-dashboard": "concurrently --kill-others \"yarn dashboard:dev\" \"yarn dev-libraries\"",
"dev-pos": "concurrently --kill-others \"yarn point-of-sale:dev\" \"yarn dev-libraries\"",
"build-libraries": "yarn workspace @sudosos/sudosos-frontend-common run 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"
},
"dependencies": {
"@sudosos/sudosos-client": "github:GEWIS/sudosos-client#2d6105a0b440f6d62b024edbc7612508263970c2",
"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",
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"primevue": "^3.49.0",
"sass": "^1.63.6",
"vue": "^3.3.4",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^2.0.0",
"@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",
"@vitejs/plugin-vue": "^5.0.2",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-plugin-github-commit-hash": "^1.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.11.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"typescript": "~5.5.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^4.2.4",
"vue-tsc": "^2.0.29"
},
"packageManager": "[email protected]"
}