generated from Borodutch/backend-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.28 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
{
"name": "attestor",
"version": "1.0.0",
"description": "Attestor of credentials",
"main": "dist/server.js",
"repository": "https://github.com/BigWhaleLabs/attestor",
"license": "MIT",
"prettier": "@big-whale-labs/prettier-config",
"scripts": {
"build": "tsc --skipLibCheck",
"distribute": "node dist/server.js",
"start": "tsc-watch --skipLibCheck --onSuccess 'node dist/server.js'",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0 ./src/",
"docker-start-development": "docker-compose --profile=development up",
"docker-start-production": "docker-compose --profile=production up",
"docker-start-production-no-dns": "docker-compose --profile=production-no-dns up",
"docker-update-image": "docker build -t bigwhalelabs/attestor -f Dockerfile.backend.production . && docker push bigwhalelabs/attestor"
},
"dependencies": {
"@big-whale-labs/constants": "^0.2.25",
"@big-whale-labs/ketl-email": "^0.4.1",
"@big-whale-labs/seal-cred-email": "^1.1.2",
"@hapi/boom": "^10.0.0",
"@koa/cors": "^4.0.0",
"@types/node-persist": "^3.1.4",
"@types/nodemailer-mailgun-transport": "^1.4.4",
"@zk-kit/incremental-merkle-tree": "^1.0.0",
"amala": "^8.0.2",
"axios": "^1.5.0",
"axios-cache-interceptor": "^1.3.0",
"circomlibjs": "^0.1.7",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"ethers": "^5.7.2",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^12.0.0",
"node-persist": "^3.1.3",
"nodemailer": "^6.9.5",
"nodemailer-mailgun-transport": "^2.1.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@big-whale-labs/bwl-eslint-backend": "^1.0.3",
"@big-whale-labs/prettier-config": "^1.1.3",
"@rushstack/eslint-patch": "^1.2.0",
"@types/imapflow": "^1.0.11",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^3.3.0",
"@types/node": "^18.11.9",
"@types/nodemailer": "^6.4.6",
"@types/uuid": "^8.3.4",
"eslint": "^8.28.0",
"module-alias": "^2.2.2",
"prettier": "^2.8.0",
"source-map-support": "^0.5.21",
"tsc-watch": "^5.0.3",
"typescript": "^4.9.3"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "[email protected]"
}