-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 2.09 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
{
"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": "[email protected]: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.4.2",
"@lit-app/state": "1.0.0",
"@lit/localize": "0.12.2",
"dompurify": "3.2.1",
"lit": "3.2.1"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@lit/localize-tools": "0.8.0",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@vitejs/plugin-basic-ssl": "1.1.0",
"cypress": "13.16.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lit-a11y": "^4.1.4",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"typescript": "5.7.2",
"typescript-eslint": "^8.15.0",
"vite": "5.4.11",
"vite-plugin-pwa": "0.21.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}