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
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"name": "partchain-laapi",
"version": "1.0.0",
"description": "PartChain API for interaction with the offchain DB",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/PartChain"
},
"license": "Apache 2.0",
"dependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.5",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/keycloak-connect": "^4.5.4",
"@types/lodash": "^4.14.157",
"@types/node": "^13.13.12",
"@types/validator": "^10.11.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"country-iso-to-coordinates": "^1.0.2",
"error-to-json": "^2.0.0",
"excel4node": "^1.7.2",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"keycloak-connect": "12.0.1",
"keycloak-connect-multirealm": "^2.1.0",
"lodash": "^4.17.19",
"log4js": "^4.5.1",
"pg": "^8.5.1",
"sequelize": "^6.3.5",
"swagger-jsdoc": "^3.7.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"dotenv": "^8.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-loader": "^6.2.2",
"typedoc": "^0.15.8",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
}
}