-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 3.04 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 3.04 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
{
"name": "enkrypt-api",
"version": "1.4.0",
"private": true,
"type": "module",
"author": "Nick Kelly",
"scripts": {
"typecheck": "tsc -p ./tsconfig.json --noEmit --tsBuildInfoFile ./build.typecheck/.tsbuildinfo",
"codegen:openapi": "openapi-typescript openapi.yaml --output src/openapi.d.ts",
"api": "pnpm build:clean && pnpm build:only && pnpm start:api",
"api:fast": "pnpm build:only && pnpm start:api",
"repl": "pnpm build:clean && pnpm build:only && pnpm start:repl",
"repl:fast": "pnpm build:only && pnpm start:repl",
"dev": "pnpm dev:api",
"dev:api": "pnpm build:clean && pnpm build:only && concurrently -n \"build,run\" \"pnpm build:watch:only\" \"pnpm start:watch:api\"",
"dev:repl": "pnpm build:clean && pnpm build:only && concurrently -n \"build,run\" \"pnpm build:watch:only\" \"pnpm start:watch:repl\"",
"start:api": "node --env-file ./.env --enable-source-maps ./build/main.js api",
"start:repl": "node --env-file ./.env --enable-source-maps ./build/main.js repl",
"start:watch:api": "nodemon --delay 0.1 -w ./build -w ./.env -w ./openapi.yaml -w ./package.json -e .js,.json -x \"pnpm start:api\"",
"start:watch:repl": "nodemon --delay 0.1 -w ./build -w ./.env -w ./openapi.yaml -w ./package.json -e .js,.json -x \"pnpm start:repl\"",
"build": "pnpm clean && pnpm build:only",
"build:only": "tsc -p ./config/tsconfig.build.json",
"build:watch": "pnpm clean && pnpm build:watch:only",
"build:watch:only": "pnpm build:only --watch --preserveWatchOutput",
"build:clean": "rimraf ./build",
"test:dev": "pnpm test:build:clean && pnpm test:build && concurrently -n \"build,run\" \"pnpm test:build:watch:only\" \"pnpm test:watch\"",
"test": "pnpm test:build:clean && pnpm test:build:only && pnpm test:only",
"test:fast": "pnpm test:build:only && pnpm test:only",
"test:only": "node --enable-source-maps --test-concurrency 1 --test './build.test/**/*.{test,spec}.js'",
"test:watch": "nodemon --delay 0.1 -w ./build.test -w ./.env -w ./openapi.yaml -w ./package.json -e .js,.json -x \"pnpm test:only\"",
"test:build": "pnpm test:build:clean && pnpm test:build:only",
"test:build:only": "tsc -p ./config/tsconfig.test.json",
"test:build:watch": "pnpm test:build:clean && pnpm test:build:watch:only",
"test:build:watch:only": "pnpm test:build:only --watch --preserveWatchOutput",
"test:build:clean": "rimraf ./build.test",
"clean": "pnpm build:clean && pnpm test:build:clean"
},
"devDependencies": {
"@types/compression": "1.7.5",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/node": "22.13.5",
"concurrently": "9.1.2",
"nodemon": "3.1.9",
"openapi-types": "12.1.3",
"openapi-typescript": "7.6.1",
"rimraf": "6.0.1",
"typescript": "5.7.3"
},
"dependencies": {
"@aws-sdk/client-s3": "3.750.0",
"@ethereumjs/util": "9.1.0",
"@smithy/node-http-handler": "4.0.2",
"ajv": "8.17.1",
"compression": "1.8.0",
"cors": "2.8.5",
"ethereum-cryptography": "3.1.0",
"express": "4.21.2",
"pino": "9.6.0",
"pino-pretty": "13.0.0",
"prom-client": "15.1.3",
"tslib": "2.8.1",
"yaml": "2.7.0"
}
}