-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.16 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
{
"name": "pluraltools-backend",
"version": "2.6.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"build": "node esbuild.config.mjs",
"build:watch": "node --watch-path=./src --watch-preserve-output esbuild.config.mjs",
"start": "node --env-file=.env dist/index.js",
"dev:tsc": "tsc --watch --preserveWatchOutput",
"dev:node": "node --watch --env-file=.env dist/index.js",
"dev:esbuild": "pnpm run build:watch",
"dev": "run-p dev:*",
"db:generate": "pnpm exec drizzle-kit generate",
"db:drop": "pnpm exec drizzle-kit drop",
"db:check": "pnpm exec drizzle-kit check",
"db:studio": "pnpm exec drizzle-kit studio",
"db:up": "pnpm exec drizzle-kit up",
"db:seed": "node --import tsx --env-file=.env ./scripts/db/seed.ts",
"db:seed:cleanup": "pnpm run db:seed --cleanup",
"test": "node --import tsx --env-file=.env --test ./src/**/*.spec.ts",
"test:coverage": "nyc pnpm run test",
"format": "pnpm exec prettier --check \"src/**/*.{ts,md}\"",
"format:fix": "pnpm exec prettier --write \"src/**/*.{ts,md}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "^20.14.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@ngneat/falso": "^7.1.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/pg": "^8.11.6",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"csv-parser": "^3.0.0",
"drizzle-kit": "^0.21.4",
"esbuild": "^0.19.8",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"npm-run-all": "^4.1.5",
"nyc": "^17.0.0",
"pg": "^8.11.5",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsx": "^4.16.2",
"typescript": "^5.5.2"
},
"dependencies": {
"@pcd/semaphore-signature-pcd": "^0.9.0",
"@pcd/util": "^0.3.0",
"cors": "^2.8.5",
"drizzle-orm": "^0.30.10",
"drizzle-zod": "^0.5.1",
"express": "^4.18.2",
"iron-session": "^6.3.1",
"pino": "^9.2.0",
"pino-http": "^10.2.0",
"pino-pretty": "^11.2.1",
"zod": "^3.22.4"
}
}