-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 2.79 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
{
"name": "printstream",
"version": "0.1.0",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspace @printstream/shared && npm run build --workspace @printstream/bridge-runtime && npm run build --workspace @printstream/sea-runtime && npm run build --workspace @printstream/api && npm run build --workspace @printstream/bridge && npm run build --workspace @printstream/slicer && npm run build --workspace @printstream/web",
"capture:printer-media": "tsx scripts/dev/capture-live-printer-media.ts",
"db:generate": "npm run prisma:generate --workspace @printstream/api",
"db:migrate": "npm run prisma:migrate:dev --workspace @printstream/api --",
"db:migrate:deploy": "npm run prisma:migrate:deploy --workspace @printstream/api",
"db:reset-auth": "npm run db:reset-auth --workspace @printstream/api",
"db:seed:dev": "npm run db:seed:dev --workspace @printstream/api --",
"db:wait": "node --env-file=.env scripts/dev/wait-for-db.mjs",
"dev": "node scripts/dev/run-dev.mjs",
"dev:db": "npm run db:wait && node scripts/bootstrap-prisma-migrations.mjs",
"export:web-icons": "node scripts/dev/export-web-icons.mjs",
"lint": "eslint .",
"notices": "node scripts/dev/generate-third-party-notices.mjs",
"test": "NODE_ENV=test node scripts/dev/run-tests.mjs",
"test:source-hygiene": "node --test scripts/source-hygiene.test.mjs",
"typecheck": "npm run typecheck --workspace @printstream/shared && npm run build --workspace @printstream/shared && npm run typecheck --workspace @printstream/bridge-runtime && npm run build --workspace @printstream/bridge-runtime && npm run typecheck --workspace @printstream/sea-runtime && npm run build --workspace @printstream/sea-runtime && npm run typecheck --workspace @printstream/api && npm run build --workspace @printstream/api && npm run typecheck --workspace @printstream/bridge && npm run typecheck --workspace @printstream/slicer && npm run typecheck --workspace @printstream/web",
"validate": "node scripts/dev/run-low-priority.mjs npm run validate:stages",
"validate:stages": "npm run lint && npm run test && npm run test:source-hygiene && npm run typecheck && npm run prisma:validate --workspace @printstream/api"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@typescript/native": "npm:typescript@^7.0.2",
"concurrently": "^9.1.2",
"eslint": "^9.24.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-eslint": "^8.63.0"
},
"dependencies": {
"@types/multer": "^1.4.13",
"multer": "^2.1.1"
},
"overrides": {
"esbuild": "^0.25.0"
}
}