-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "kaytrust-oss-demo-back",
"version": "0.1.5",
"description": "",
"main": "index.ts",
"engines" : {
"npm" : ">=8.0.0 <9.9.9",
"node" : ">=16.0.0 <17.0.0"
},
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"changelog": "standard-version",
"lint": "eslint --ext .js,.ts ."
},
"keywords": [],
"license": "ISC",
"dependencies": {
"@kaytrust/verifiable-credentials": "^0.0.1",
"axios": "^1.3.4",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"openid-client": "^5.4.0",
"socket.io-client": "^4.5.1",
"uuid": "^9.0.0",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.0.4",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"concurrently": "^7.2.2",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^2.0.19",
"standard-version": "^9.5.0",
"typescript": "^4.7.4"
}
}