-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.12 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
{
"name": "product-tracker",
"version": "1.1.0",
"scripts": {
"build": "tsc",
"start:dev": "cross-env NODE_ENV=development node --require tsx/cjs --env-file=.env src/server.ts",
"start:dev:watch": "cross-env NODE_ENV=development node --require tsx/cjs --watch --env-file=.env src/server.ts",
"start:prod": "tsc && cross-env NODE_ENV=production node dist/server.js",
"test": "cross-env DATABASE_URL=file:../test.db vitest --run",
"test:watch": "cross-env DATABASE_URL=file:../test.db vitest",
"test:coverage": "cross-env DATABASE_URL=file:../test.db vitest --coverage",
"test:migrate": "cross-env DATABASE_URL=file:../test.db npx prisma migrate reset",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write . && npx prisma format",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/awilix": "^5.1.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@fastify/type-provider-typebox": "^4.0.0",
"@prisma/client": "^5.10.2",
"@sinclair/typebox": "^0.32.15",
"ajv": "^8.12.0",
"awilix": "^10.0.1",
"camelcase": "^8.0.0",
"fastify": "^4.26.2",
"json-schema-faker": "^0.5.6",
"luxon": "^3.4.4",
"muninn": "^0.23.0",
"pino": "^8.19.0",
"toad-scheduler": "^3.0.1",
"undici": "^6.7.0",
"vitest": "^1.3.1",
"vitest-mock-extended": "^1.3.1"
},
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vitest": "^0.3.22",
"husky": "^8.0.3",
"prettier": "^3.2.5",
"prisma": "^5.10.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsimp": "^2.0.11",
"tslib": "^2.5.0",
"tsx": "^4.7.1",
"typescript": "^5.0.2"
}
}