-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "hotel-management",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"apps/backend",
"apps/frontend/core",
"apps/frontend/luggage",
"apps/frontend/rooms",
"apps/frontend/shell",
"libs/auth",
"libs/shared"
],
"scripts": {
"build": "yarn workspaces foreach -v run build",
"clean": "yarn workspaces foreach -v run clean",
"dev": "yarn workspaces foreach -pvi run dev",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w",
"test:unit": "yarn workspaces foreach -v run test:unit"
},
"dependencies": {
"pinia": "2.0.28",
"vue": "3.2.45",
"vue-router": "4.1.6"
},
"devDependencies": {
"@playwright/test": "1.28.1",
"@rushstack/eslint-patch": "1.1.4",
"@types/jsdom": "20.0.1",
"@types/node": "18.11.12",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"@vitejs/plugin-vue": "4.0.0",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "11.0.0",
"@vue/test-utils": "2.2.6",
"@vue/tsconfig": "0.1.3",
"eslint": "8.22.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "9.3.0",
"jsdom": "20.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"rimraf": "4.1.2",
"sass": "1.58.0",
"tsx": "3.12.3",
"typescript": "4.8.4",
"vite": "4.0.0",
"vitest": "0.25.6",
"vue-tsc": "1.0.12"
}
}