-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "mmorpg-kit-auction-house-service",
"version": "0.0.4",
"description": "A simple auction house service built with NodeJS, Fastify and Prisma",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"start": "node ./dist/index.js",
"start:pm2": "pm2 start ./dist/index.js --name \"mmorpg-kit-auction-house-service\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/insthync/mmorpg-kit-auction-house-service.git"
},
"keywords": [],
"author": "Ittipon Teerapruettikulchai",
"license": "MIT",
"bugs": {
"url": "https://github.com/insthync/mmorpg-kit-auction-house-service/issues"
},
"homepage": "https://github.com/insthync/mmorpg-kit-auction-house-service#readme",
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.2",
"prisma": "^6.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@fastify/auth": "^5.0.2",
"@prisma/client": "^6.1.0",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"fastify": "^5.2.0",
"luxon": "^3.5.0",
"tslib": "^2.8.1"
}
}