-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 957 Bytes
/
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
{
"name": "fastify-ts-oo-ca",
"version": "1.0.0",
"description": "boilerplate using fastify, typescript, oop, and clean architecture",
"main": "index.ts",
"scripts": {
"test": "test",
"start:dev": "NODE_ENV=local nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ubaidillahhf/fastify-ts-oo-ca.git"
},
"author": "Ubaidillah Hakim Fadly",
"license": "MIT",
"bugs": {
"url": "https://github.com/ubaidillahhf/fastify-ts-oo-ca/issues"
},
"homepage": "https://github.com/ubaidillahhf/fastify-ts-oo-ca#readme",
"dependencies": {
"@prisma/client": "5.6.0",
"config-yaml": "^1.1.6",
"dotenv": "^16.3.1",
"fastify": "3.7.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/config-yaml": "^1.1.4",
"@types/node": "^20.10.3",
"nodemon": "^3.0.2",
"prisma": "^5.6.0",
"typescript": "^5.3.2"
}
}