-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "node-starter",
"version": "0.0.0",
"description": "Node.js service starter project",
"private": true,
"license": "UNLICENSED",
"type": "module",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"prebuild": "rimraf dist",
"build": "tsc -p ./tsconfig.app.json",
"start:server": "ts-node src/main.ts"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@abraham/reflection": "^0.12.0",
"@fastify/helmet": "^10.1.1",
"@fastify/type-provider-typebox": "^2.4.0",
"@sinclair/typebox": "^0.25.24",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"fastify-plugin": "^4.5.1",
"inversify": "^6.0.2",
"ioredis": "^5.3.2",
"mongoose": "^7.6.3",
"p-limit": "^4.0.0",
"pino": "^8.16.1",
"redlock": "5.0.0-beta.2",
"rxjs": "^7.8.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@swc-node/register": "^1.6.8",
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/jest": "^29.5.6",
"@types/lodash": "^4.14.200",
"@types/node": "^18.18.7",
"jest": "^29.7.0",
"jest-junit": "^15.0.0",
"npm-run-all": "^4.1.5",
"pino-pretty": "^10.2.3",
"rimraf": "^4.4.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"type-fest": "^4.6.0",
"typescript": "^5.2.2"
}
}