-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.26 KB
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
{
"name": "veri-q",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@10.13.1",
"pnpm": {
"overrides": {
"brace-expansion@^1.1.7": "^1.1.13",
"brace-expansion@^5.0.2": "^5.0.6",
"fast-uri": "^3.1.2",
"flatted": "^3.4.2",
"lodash": "^4.18.1",
"picomatch@^2.3.1": "^2.3.2",
"picomatch@^4.0.3": "^4.0.4",
"postcss": "^8.5.10",
"yaml": "^2.8.3"
}
},
"scripts": {
"postinstall": "node scripts/setupEnv.mjs",
"dev:captcha-server": "node scripts/captchaVerifyServer.mjs",
"dev:local": "node scripts/devWithCaptcha.mjs",
"prepare": "lefthook install",
"dev": "node scripts/devWithCaptcha.mjs",
"dev:web": "vite",
"build": "vite build",
"start": "node scripts/devWithCaptcha.mjs",
"start:dev": "node scripts/devWithCaptcha.mjs",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:write": "prettier --write .",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"test-code": "node src/test-code/generate-qr-png.mjs",
"test-code:": "node src/test-code/generate-qr-png.mjs",
"security:check": "secretlint \"**/*\" && pnpm audit --audit-level high"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@secretlint/secretlint-rule-preset-recommend": "^11.3.0",
"@types/node": "^24.3.1",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/parser": "^8.47.0",
"@vanilla-extract/vite-plugin": "^5.1.0",
"@vitejs/plugin-react": "^5.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"lefthook": "^1.13.6",
"lint-staged": "^16.2.0",
"prettier": "^3.8.1",
"qrcode": "^1.5.4",
"secretlint": "^11.3.0",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vitest": "^4.1.8"
},
"dependencies": {
"@tanstack/react-router": "^1.166.3",
"@vanilla-extract/css": "^1.18.0",
"antd": "^6.3.2",
"axios": "1.16.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"zustand": "5.0.12"
}
}