-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.87 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "cred-admin",
"description": "Server for managing issuances of academic verifiable credentials",
"version": "0.0.8",
"license": "MIT",
"scripts": {
"build": "node build.js && tsc --build tsconfig.prod.json",
"lint": "eslint --fix './**/*.ts'",
"start": "until sequelize-cli --config .sequelize.js db:migrate; do sleep 1; done && until sequelize-cli --config .sequelize.js db:seed:all; do sleep 1; done && node -r module-alias/register ./dist",
"start:dev": "nodemon"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts, html",
"exec": "ts-node -r tsconfig-paths/register ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digitalcredentials/cred-admin.git"
},
"_moduleAliases": {
"@models": "dist/models",
"@entities": "dist/entities",
"@shared": "dist/shared",
"@server": "dist/Server"
},
"dependencies": {
"@digitalcredentials/sign-and-verify-core": "^2.1.1",
"@tweedegolf/storage-abstraction": "^1.4.3",
"axios": "^0.25.0",
"bcrypt": "^5.0.1",
"command-line-args": "^5.1.1",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-joi-validation": "^5.0.0",
"helmet": "^3.12.1",
"http-status-codes": "^2.1.4",
"joi": "^17.4.0",
"json-templates": "^4.1.0",
"jsonfile": "^6.1.0",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pg": "^8.6.0",
"qrcode": "^1.4.4",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.6.2",
"sequelize-cli": "^6.2.0",
"sequelize-typescript": "^2.1.0",
"swagger-express-typescript": "^1.0.2",
"swagger-ui-dist": "^3.48.0",
"tslib": "^2.2.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bluebird": "^3.5.34",
"@types/command-line-args": "^5.0.0",
"@types/express": "^4.17.11",
"@types/find": "^0.2.1",
"@types/helmet": "0.0.37",
"@types/jasmine": "^3.7.2",
"@types/json-templates": "^3.0.0",
"@types/jsonfile": "^6.0.0",
"@types/lodash": "^4.14.169",
"@types/morgan": "^1.9.2",
"@types/node": "^15.0.3",
"@types/passport": "^1.0.6",
"@types/passport-jwt": "^3.0.5",
"@types/qrcode": "^1.4.0",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"find": "^0.3.0",
"fs-extra": "^10.0.0",
"jasmine": "^3.7.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"sequelize-typescript-migration": "0.0.1-beta.3",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4"
}
}