-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 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
40
{
"name": "issuer-cord",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/index.ts",
"dev": "tsc-watch --skipLibCheck --onSuccess \"node ./dist/index.js\"",
"prod": "node ./dist/index.js",
"build": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@cord.network/sdk": "0.9.1-1rc18",
"@cord.network/vc-export": "0.9.1-1rc18",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"moment": "^2.30.1",
"nodemon": "^3.1.7",
"pg": "^8.10.0",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.1",
"typeorm": "^0.3.20",
"uuid": "^10.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/node": "^22.7.3",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^10.0.0",
"@types/yamljs": "^0.2.34",
"typescript": "^5.6.2"
}
}