This repository was archived by the owner on Oct 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.8 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.8 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "partchain-aems",
"version": "1.0.0",
"description": "PartChain Asset Exchange Microservice",
"main": "src/index.ts",
"scripts": {
"serve": "APP_MODE=development node ./dist/index.js",
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"watch": "webpack --mode=development --watch",
"test": "npx jest",
"docs": "./node_modules/.bin/typedoc --out docs ./src"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/PartChain/aems"
},
"dependencies": {
"body-parser": "^1.19.0",
"cluster": "^0.7.7",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv-webpack": "^3.0.0",
"error-to-json": "^2.0.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fabric-network": "^2.2.3",
"fp-ts": "^2.9.0",
"io-ts": "^2.2.13",
"io-ts-types": "^0.5.12",
"jest": "^26.6.3",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.5.1",
"kafkajs": "^1.15.0",
"keycloak-connect": "12.0.1",
"keycloak-connect-multirealm": "^2.1.0",
"lodash": "^4.17.21",
"log4js": "^6.3.0",
"monocle-ts": "^2.3.3",
"newtype-ts": "^0.3.4",
"node-cron": "^2.0.3",
"pg": "^8.5.1",
"sequelize": "^6.3.5",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/jest": "^24.9.1",
"@types/js-yaml": "^3.12.5",
"@types/jsonwebtoken": "^8.5.0",
"@types/keycloak-connect": "^4.5.4",
"@types/lodash": "^4.14.161",
"@types/node": "^14.14.6",
"@types/node-cron": "^2.0.3",
"@types/validator": "^10.11.2",
"typescript": "^4.0.2",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.4"
}
}