-
Notifications
You must be signed in to change notification settings - Fork 323
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.73 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
79
80
81
82
83
84
85
{
"name": "sahidawa-india",
"version": "1.0.0",
"private": true,
"description": "SahiDawa Open Health — Medicine safety infrastructure for Bharat",
"engines": {
"node": ">=22.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"clean": "npx rimraf .turbo node_modules apps/*/node_modules apps/*/.next packages/*/node_modules",
"test": "turbo run test",
"lint": "npm run lint --workspaces --if-present",
"lint:circular": "npx madge --circular apps/api/src apps/web packages/shared/src packages/types/src packages/validators/src",
"test:a11y:voice": "npm run test:a11y:voice -w web",
"prepare": "node -e \"if(!process.env.CI) { require('child_process').execSync('npx --yes husky', {stdio: 'inherit'}) }\" || true",
"check:migrations": "node scripts/check-migrations.js",
"audit:node": "npm audit -w sahidawa-api -w web --audit-level=high",
"audit:python": "node scripts/audit-python.js",
"audit:all": "npm run audit:node && npm run audit:python"
},
"keywords": [
"medicine",
"verification",
"health",
"gssoc",
"cdsco"
],
"author": "",
"license": "MIT",
"packageManager": "npm@11.12.1",
"dependencies": {
"@supabase/supabase-js": "^2.110.0",
"@zxing/library": "0.21.3",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"helmet": "^8.2.0",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.8",
"morgan": "^1.10.1",
"rate-limit-redis": "^5.0.0",
"react-intersection-observer": "^10.0.3",
"redis": "^6.1.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@parcel/watcher": "^2.5.6",
"@types/node": "^20.0.0",
"@types/winston": "^2.4.4",
"eslint": "^10.6.0",
"fake-indexeddb": "^6.2.5",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"madge": "^8.0.0",
"next": "^16.2.9",
"prettier": "^3.9.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"react-hook-form": "^7.80.0",
"react-is": "^19.2.7",
"turbo": "^2.10.2"
},
"overrides": {
"typescript": "5.6.2",
"@zxing/library": "0.21.3",
"postcss": "^8.5.15",
"form-data": "^4.0.6",
"protobufjs": "^7.6.3",
"js-yaml": "^4.1.2",
"serialize-javascript": "^7.0.7",
"sharp": "^0.35.0",
"node-cron": {
"uuid": "^9.0.1"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,md,json}": "prettier --write"
}
}