-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 KB
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": "issuer-agent",
"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",
"create:stash-account": "ts-node src/controller/create_stash_account.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@cord.network/vc-export": "0.9.6-6",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"doken-precomputer": "0.0.4",
"express": "^5.1.0",
"moment": "^2.30.1",
"pg": "^8.16.0",
"redis": "^5.5.6",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.24",
"uuid": "^11.1.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/node": "^22.7.3",
"@types/uuid": "^10.0.0",
"@types/yamljs": "^0.2.34",
"ts-node": "^10.9.1",
"typescript": "^5.8.3"
}
}