-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.88 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "onetwoinventory",
"version": "2.0.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"type-check": "tsc --noEmit",
"test:unit": "NODE_OPTIONS='--import tsx' node --test \"tests/**/*.test.ts\"",
"check:decimal-boundaries": "node scripts/check-domain-decimal-boundaries.mjs",
"check:connector-fetch-boundaries": "node scripts/check-connector-fetch-boundaries.mjs",
"check:migration-conventions": "node scripts/check-migration-conventions.mjs",
"check:all": "npm run check:decimal-boundaries && npm run check:connector-fetch-boundaries && npm run check:migration-conventions",
"test:concurrency": "RUN_DB_CONCURRENCY_TESTS=1 NODE_OPTIONS='--import tsx' node --test \"tests/concurrency/**/*.test.ts\"",
"docs:workflows": "tsx scripts/generate-workflow-docs.ts",
"docs:workflows:check": "tsx scripts/generate-workflow-docs.ts --check",
"preflight:production": "tsx scripts/preflight-production.ts",
"invariant-check:preflight": "tsx scripts/invariant-check-preflight.ts",
"invariant-check:preflight:fixture": "tsx scripts/invariant-check-preflight-fixture.ts",
"inventory:snapshots:backfill": "tsx scripts/backfill-inventory-snapshots.ts",
"validate": "bash scripts/validate-local.sh",
"validate:db": "bash scripts/validate-db.sh",
"db:migrate:status": "bash scripts/prisma-dev-db.sh status",
"db:migrate:deploy": "bash scripts/prisma-dev-db.sh deploy",
"db:schema:diff": "bash scripts/prisma-dev-db.sh diff",
"db:pull": "bash scripts/prisma-dev-db.sh db-pull",
"db:generate": "bash scripts/prisma-dev-db.sh generate",
"db:seed": "tsx prisma/seed.ts",
"db:seed:e2e": "tsx e2e/prepare.ts",
"db:studio": "prisma studio",
"db:schema:drift": "node scripts/check-prisma-drift.mjs",
"db:schema:scope": "node scripts/check-prisma-schema-scope.mjs",
"cli": "tsx scripts/cli.ts",
"e2e": "NODE_OPTIONS='--import tsx' playwright test",
"e2e:select": "node scripts/e2e-select.mjs",
"e2e:external": "NODE_OPTIONS='--import tsx' playwright test --grep @external",
"e2e:wc": "NODE_OPTIONS='--import tsx' playwright test --grep @wc",
"e2e:xero": "NODE_OPTIONS='--import tsx' playwright test --grep @xero",
"e2e:headed": "NODE_OPTIONS='--import tsx' playwright test --headed",
"e2e:ui": "NODE_OPTIONS='--import tsx' playwright test --ui"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1030.0",
"@base-ui/react": "^1.4.0",
"@prisma/adapter-pg": "^7.7.0",
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^13.3.0",
"@tailwindcss/typography": "^0.5.19",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0",
"@types/ssh2-sftp-client": "^9.0.6",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "~1.7.0",
"next": "16.2.3",
"next-auth": "^5.0.0-beta.30",
"next-themes": "^0.4.6",
"nodemailer": "^8.0.5",
"otplib": "^13.4.0",
"pdfkit": "^0.18.0",
"pg": "^8.20.0",
"qrcode": "^1.5.4",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-markdown": "^10.1.0",
"recharts": "^3.8.1",
"remark-gfm": "^4.0.1",
"shadcn": "^4.2.0",
"sharp": "^0.34.5",
"ssh2-sftp-client": "^12.1.1",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@prisma/client": "^7.7.0",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22",
"@types/pdfkit": "^0.17.5",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"prisma": "^7.7.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}