-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
89 lines (89 loc) · 2.59 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "indico-check-in",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@badgateway/oauth2-client": "^2.2.4",
"@heroicons/react": "^2.0.18",
"@testing-library/jest-dom": "^6.5.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"dexie": "^4.0.1-beta.1",
"dexie-react-hooks": "^1.1.6",
"html5-qrcode": "^2.3.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.0",
"tailwind-merge": "^1.14.0",
"typescript": "^5.5.3",
"vite": "^5.4.2",
"vite-tsconfig-paths": "^5.0.1",
"workbox-background-sync": "^7.1.0",
"workbox-broadcast-update": "^7.1.0",
"workbox-cacheable-response": "^7.1.0",
"workbox-core": "^7.1.0",
"workbox-expiration": "^7.1.0",
"workbox-google-analytics": "^7.1.0",
"workbox-navigation-preload": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-range-requests": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0",
"workbox-streams": "^7.1.0"
},
"scripts": {
"start": "export HTTPS=true && export COMMIT_SHA=$(git rev-parse --short HEAD) && vite",
"build": "export COMMIT_SHA=$(git rev-parse --short HEAD) && vite build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint --ext js,jsx,ts,tsx src/ *.js *.ts *.cjs && prettier --check src/ *.js *.ts *.cjs",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**{*.js,*.jsx,*.ts,*.tsx}": [
"eslint --fix"
],
"src/**": [
"prettier --write"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fake-indexeddb": "^4.0.2",
"husky": "^8.0.3",
"jsdom": "^25.0.0",
"lint-staged": "^14.0.1",
"postcss": "^8.4.41",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.4",
"sass": "^1.77.8",
"tailwindcss": "^3.4.10",
"vite-plugin-pwa": "^0.20.5",
"vitest": "^2.0.5"
}
}