-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 936 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 936 Bytes
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
{
"name": "fastify-prisma-example-basic-cjs",
"description": "A basic example using the fastify-prisma plugin as a CommonJS module",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "swc ./src -d ./dist --strip-leading-paths --delete-dir-on-start --copy-files",
"serve": "node ./index.js",
"db:start": "./start.sh",
"db:stop": "docker compose down",
"prisma:seed": "tsx --env-file=.env prisma/seed.ts",
"prisma:deploy": "prisma migrate deploy",
"prisma:generate": "prisma generate"
},
"author": "Joggr Engineering <engineering@joggr.io>",
"license": "MIT",
"dependencies": {
"@joggr/fastify-prisma": "file:../../package.tgz",
"@prisma/client": "^6.8.2",
"@swc/cli": "^0.7.7",
"@swc/core": "^1.11.24",
"dotenv": "^16.5.0",
"fastify": "^5.7.4",
"prisma": "^6.8.2",
"tsx": "^4.19.4"
}
}