-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "prisma-in-the-air",
"version": "1.0.0",
"description": "Demo about Prisma",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"dev": "nodemon -w src src/server.ts",
"prisma": "prisma",
"deploy": "npm run prisma generate && npm run build && npm run prisma migrate deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Puppo/prisma-in-the-air.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Puppo/prisma-in-the-air/issues"
},
"homepage": "https://github.com/Puppo/prisma-in-the-air#readme",
"devDependencies": {
"@types/node": "^18.15.11",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/cors": "^8.2.1",
"@fastify/env": "^4.2.0",
"@fastify/sensible": "^5.2.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.7.0",
"@fastify/type-provider-typebox": "^3.0.0",
"@prisma/client": "^4.12.0",
"@sinclair/typebox": "^0.26.8",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"cp": "^0.2.0",
"dotenv": "^16.0.3",
"fastify": "^4.15.0",
"fastify-plugin": "^4.5.0",
"prisma": "^4.12.0"
}
}