-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "krc20-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts",
"build": "tsc",
"prisma:generate": "prisma generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/argonmining/krc20-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/argonmining/krc20-backend/issues"
},
"homepage": "https://github.com/argonmining/krc20-backend#readme",
"dependencies": {
"@prisma/client": "^5.20.0",
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"multer": "^1.4.5-lts.1",
"ofetch": "^1.4.1",
"winston": "^3.14.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/connect": "^3.4.35",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/http-errors": "^2.0.1",
"@types/mime": "^3.0.1",
"@types/multer": "^1.4.12",
"@types/node": "^22.5.4",
"@types/qs": "^6.9.7",
"@types/range-parser": "^1.2.4",
"@types/serve-static": "^1.15.1",
"nodemon": "^3.1.4",
"prisma": "^5.20.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
}
}