-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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": "storeapi-fastify",
"version": "1.0.0",
"description": "Basic store api using fastify and prisma",
"main": "src/app.ts",
"engines": {
"node": "18.18.2"
},
"scripts": {
"dev": "nodemon src/app.ts",
"start": "npm run build && set NODE_ENV=production && node build/app.js",
"build": "tsc",
"migrate": "prisma migrate dev",
"migrate:dev": "prisma migrate dev && npm run dev",
"prettier": "prettier --config .prettierrc src/**/*.ts --write",
"lint": "npx eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yousief784/StoreApi-Fastify.git"
},
"keywords": [
"fastify",
"mysql",
"prisma",
"docker"
],
"author": "Yousief Noaman",
"license": "ISC",
"bugs": {
"url": "https://github.com/yousief784/StoreApi-Fastify/issues"
},
"homepage": "https://github.com/yousief784/StoreApi-Fastify#readme",
"dependencies": {
"@fastify/env": "^4.3.0",
"@fastify/multipart": "^8.1.0",
"@fastify/static": "^6.12.0",
"@prisma/client": "^5.7.1",
"fastify": "^4.25.2",
"sharp": "^0.33.1"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"prisma": "^5.7.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}