-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.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
{
"name": "thesis-signage-app",
"version": "1.0.0",
"description": "Prototype project for testing content delivery strategies of digital signage applications.",
"workspaces": [
"api",
"frontend",
"packages/*"
],
"author": "Lukas Hauenstein ([email protected])",
"scripts": {
"start:api": "npm run -w api start",
"start:frontend": "npm run -w frontend dev",
"start:services": "docker compose -f docker-compose-services.yml up --build",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"lint:fix": "eslint \"**/*.{vue,ts,js}\" --fix"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.4",
"typescript": "^5.4.5"
}
}