-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 848 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
35
{
"name": "wallet",
"version": "1.0.0",
"description": "",
"main": "build/server.js",
"scripts": {
"dev": "nodemon build/server.js",
"start": "npm run build; node build/server.js",
"model": "npx prisma generate",
"build": "npx tsc --build",
"postinstall": "prisma generate"
},
"keywords": [],
"author": "Ashok Singh",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^9.0.0",
"@prisma/client": "^4.2.1",
"@types/lodash": "^4.14.183",
"@types/node": "^18.7.6",
"axios": "^0.27.2",
"fastify": "^4.4.0",
"fastify-cors": "^6.1.0",
"fastify-plugin": "^4.2.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mysql2": "^2.3.3",
"prisma": "^4.2.1",
"sequelize": "^6.21.4",
"typescript": "^4.7.4"
},
"compilerOptions": {
"esModuleInterop": true
}
}