-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.85 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
{
"name": "overnites-backend",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "src/server.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --runInBand",
"build": "tsc -p tsconfig.build.json",
"start": "ts-node --transpile-only src/server.ts",
"dev": "tsnd --respawn --transpile-only --exit-child src/server.ts",
"migrate:dev": "export $(grep -v '^#' .env | xargs) && DATABASE_URL=\"$DATABASE_URL\" prisma migrate dev && DATABASE_URL=\"$DATABASE_URL_TEST\" prisma migrate dev --skip-seed",
"migrate:reset": "export $(grep -v '^#' .env | xargs) && DATABASE_URL=\"$DATABASE_URL\" prisma migrate reset && DATABASE_URL=\"$DATABASE_URL_TEST\" prisma migrate reset --skip-seed"
},
"prisma": {
"seed": "ts-node --transpile-only prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/cookie": "^8.3.0",
"@fastify/env": "^4.2.0",
"@fastify/jwt": "^6.5.0",
"@fastify/redis": "^6.1.0",
"@fastify/sensible": "^5.0.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.3.0",
"@prisma/client": "^4.11.0",
"@types/bcrypt": "^5.0.0",
"bcrypt": "^5.1.0",
"fastify": "^4.0.0",
"fastify-cli": "^5.7.1",
"fastify-plugin": "^4.0.0",
"fastify-zod": "^1.2.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@swc/core": "^1.3.37",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"jest": "^29.4.3",
"prisma": "^4.11.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}