-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "backend-server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "npx tsc --build",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"sleep 5 && nodemon --enable-source-maps -q dist/index.js\"",
"dev-hydra-connection": "concurrently \"npx tsc --watch\" \"nodemon --enable-source-maps -q dist/hydra-connection.test.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emurgo/cardano-serialization-lib-nodejs": "12.0.0-alpha.23",
"@meshsdk/core": "^1.5.11-beta.3",
"@prisma/client": "5.6.0",
"axios": "^1.6.2",
"blake2": "^5.0.0",
"body-parser": "^1.20.2",
"cbor": "^9.0.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"install": "^0.13.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/blake2": "^4.0.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/ws": "^8.5.10",
"concurrently": "^8.2.2",
"nodemon": "^3.0.1",
"prisma": "^5.6.0",
"typescript": "^5.3.2"
}
}