forked from sebinsua/modern-node-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "modern-node-app",
"version": "0.0.0",
"description": "A modern Node app",
"workspaces": [
"workspaces/core",
"workspaces/modules"
],
"scripts": {
"dev": "NODE_OPTIONS='--require dotenv/config' ROARR_LOG=true tsx watch src/startServer.ts --clear-screen=false | roarr pretty-print",
"start": "NODE_OPTIONS='--require dotenv/config' ROARR_LOG=true tsx src/startServer.ts",
"test": "jest --watch",
"prepare": "husky install",
"postinstall": "patch-package",
"typecheck": "tsc --noEmit"
},
"author": "Seb Insua",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^8.2.0",
"@fastify/error": "^3.2.0",
"@fastify/request-context": "^4.2.0",
"@fastify/swagger": "8.3.0",
"@fastify/swagger-ui": "^1.3.0",
"@roarr/fastify": "^1.2.1",
"@tsconfig/node18-strictest": "^1.0.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/roarr": "^2.14.3",
"dotenv": "^16.0.3",
"escalade": "^3.1.1",
"fast-json-stringify": "^5.5.0",
"fast-safe-stringify": "^2.1.1",
"fastify": "^4.13.0",
"fastify-custom-healthcheck": "^3.1.0",
"fastify-plugin": "^4.5.0",
"fs-extra": "^11.1.0",
"http-graceful-shutdown": "^3.1.12",
"postgres": "^3.3.3",
"postgres-bridge": "^1.14.0",
"roarr": "^7.14.2",
"serialize-error": "^11.0.0",
"slonik": "^33.0.7",
"slonik-interceptor-query-logging": "^1.4.7",
"tsx": "^3.12.2",
"typescript": "^4.9.4",
"undici": "^5.16.0",
"zod": "^3.20.2",
"zod-to-json-schema": "^3.20.2"
},
"devDependencies": {
"@roarr/cli": "^5.7.1",
"husky": "^8.0.3",
"jest": "^29.4.1",
"patch-package": "^6.5.1",
"prettier": "^2.8.3"
}
}