-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.45 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.45 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
{
"name": "@project/carbon-backend",
"version": "0.0.0",
"scripts": {
"clean": "npx nx reset && rm -rf coverage dist node_modules .nx/cache tmp",
"format": "npx nx format:write --all",
"lint": "npx nx run-many -t lint",
"test": "npx nx run-many -t test --skip-nx-cache --coverage --codeCoverage --coverageReporters=\"json\" && node scripts/createCombinedCoverageReport.mjs",
"test:e2e": "npx nx run-many -t e2e --skip-nx-cache",
"qualityChecks": "npm run format && npm run lint && npm run test && npm run test:e2e",
"serveAll": "npx nx run-many -t serve",
"buildAll": "npx nx run-many -t build",
"dockerBuild": "npx nx run-many -t docker-build"
},
"private": true,
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/awilix": "^4.0.0",
"@fastify/error": "^3.4.1",
"@fastify/helmet": "^11.1.1",
"@fastify/sensible": "^5.5.0",
"@fastify/swagger": "^8.13.0",
"@fastify/swagger-ui": "^2.0.1",
"@fastify/type-provider-typebox": "^4.0.0",
"@sinclair/typebox": "^0.32.12",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"awilix": "^10.0.1",
"close-with-grace": "^1.2.0",
"dotenv": "^16.3.2",
"fastify": "^4.25.2",
"fastify-plugin": "^4.5.1",
"module-alias": "^2.2.3",
"mongodb": "^6.3.0",
"mongoose": "^8.1.0",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"tslib": "^2.3.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@nx/esbuild": "^17.2.8",
"@nx/eslint": "^17.2.8",
"@nx/eslint-plugin": "^17.2.8",
"@nx/jest": "^17.2.8",
"@nx/js": "^17.2.8",
"@nx/node": "^17.2.8",
"@nx/workspace": "^17.2.8",
"@swc-node/register": "^1.6.7",
"@swc/core": "^1.3.105",
"@types/jest": "^29.4.0",
"@types/node": "^20.11.5",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"esbuild": "^0.19.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.4.1",
"jest-environment-node": "^29.4.1",
"mongodb-memory-server": "^9.1.6",
"nx": "^17.2.8",
"nyc": "^15.1.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"ts-node": "10.9.1",
"typescript": "^5.3.3"
}
}