-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.17 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
62
63
{
"name": "evento-portal",
"private": true,
"version": "0.0.0",
"homepage": "https://github.com/bkd-mba-fbi/evento-portal/blob/main/README.md",
"bugs": {
"url": "https://github.com/bkd-mba-fbi/evento-portal/issues"
},
"repository": {
"type": "git",
"url": "git+https@github.com:bkd-mba-fbi/evento-portal.git"
},
"type": "module",
"scripts": {
"start": "npm run dev",
"start:browserstack": "SSL=true vite --host bs-local.com --port 3000",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"preview:ssl": "echo \"Don't forget to set oAuthClientId: 'browserstack' in public/settings.js\nThe app will be running on https://bs-local.com:3000\" && (cd dist && HOST=bs-local.com PORT=3000 npx https-localhost)",
"analyze": "npx vite-bundle-visualizer",
"lint": "npm run lint:eslint && npm run lint:ts",
"lint:eslint": "eslint src/**/*.ts",
"lint:ts": "tsc --noEmit",
"test": "npm run cy:run",
"cy:run": "cypress run --browser chromium",
"cy:firefox": "cypress run --browser firefox",
"cy:open": "cypress open --e2e",
"locale:extract": "lit-localize extract",
"locale:build": "lit-localize build",
"format": "prettier --write --ignore-unknown \"./**/*.*\"",
"format:upgrade": "npm install --save-exact prettier@latest && npm run format",
"unused": "npx knip"
},
"dependencies": {
"@badgateway/oauth2-client": "^2.3.0",
"@lit-app/state": "^1.0.0",
"@lit/localize": "^0.12.1",
"dompurify": "^3.1.5",
"lit": "^3.1.4"
},
"devDependencies": {
"@lit/localize-tools": "~0.7.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/dompurify": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"cypress": "^13.11.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lit-a11y": "^4.1.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "3.3.2",
"typescript": "^5.4.5",
"vite": "^5.4.6",
"vite-plugin-pwa": "^0.20.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}