-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
128 lines (128 loc) · 4.19 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "thermae",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc && babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"generate": "yarn barrels",
"barrels": "barrelsby --config .barrelsby.json",
"start": "babel-watch --extensions .ts src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"bundle": "tsc && cross-env NODE_ENV=production webpack",
"start:bundle": "cross-env NODE_ENV=production node dist/app.bundle.js",
"test:unit": "cross-env NODE_ENV=test jest",
"test:lint": "eslint '**/*.{ts,js}'",
"test:lint:fix": "eslint '**/*.{ts,js}' --fix",
"prettier": "prettier '**/*.{ts,js,json,md,yml,yaml}' --write",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@certusone/wormhole-sdk": "^0.10.5",
"@commander-js/extra-typings": "^11.0.0",
"@gfxlabs/oku": "^1.0.94",
"@godaddy/terminus": "^4.12.1",
"@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"@redis/client": "^1.5.11",
"@redis/json": "^1.0.6",
"@tsed/ajv": "^7.38.1",
"@tsed/common": "^7.38.1",
"@tsed/core": "^7.38.1",
"@tsed/di": "^7.38.1",
"@tsed/engines": "^7.38.1",
"@tsed/exceptions": "^7.38.1",
"@tsed/json-mapper": "^7.38.1",
"@tsed/logger": "^6.6.3",
"@tsed/logger-file": "^6.6.3",
"@tsed/objection": "^7.38.1",
"@tsed/openspec": "^7.38.1",
"@tsed/platform-cache": "^7.38.1",
"@tsed/platform-exceptions": "^7.38.1",
"@tsed/platform-koa": "^7.38.1",
"@tsed/platform-log-middleware": "^7.38.1",
"@tsed/platform-middlewares": "^7.38.1",
"@tsed/platform-params": "^7.38.1",
"@tsed/platform-response-filter": "^7.38.1",
"@tsed/platform-views": "^7.38.1",
"@tsed/schema": "^7.38.1",
"@tsed/swagger": "^7.38.1",
"@tsed/terminus": "^7.38.1",
"@types/uuid": "^9.0.5",
"ajv": "^8.12.0",
"barrelsby": "^2.8.1",
"bufferutil": "^4.0.8",
"commander": "^11.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"dotenv-flow": "^4.0.0",
"google-protobuf": "^3.21.2",
"knex": "^3.0.1",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-compress": "^5.1.1",
"koa-override": "^3.0.0",
"koa-qs": "^3.0.0",
"koa-session": "^6.4.0",
"objection": "^3.1.2",
"prisma": "^5.4.1",
"redis": "^4.6.10",
"sqlite3": "^5.1.6",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.1",
"viem": "^1.19.3"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@tsed/cli-plugin-eslint": "4.6.4",
"@tsed/platform-router": "^7.38.1",
"@types/jest": "^29.5.7",
"@types/koa": "^2.13.9",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-compress": "^4.0.4",
"@types/koa-json": "^2.0.21",
"@types/koa-qs": "^2.0.1",
"@types/koa-send": "^4.1.4",
"@types/koa__cors": "^4.0.1",
"@types/koa__router": "^12.0.1",
"@types/multer": "^1.4.8",
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"babel-loader": "^9.1.3",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"babel-plugin-tsconfig-paths": "^1.0.3",
"babel-watch": "^7.8.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"hardhat": "^2.18.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"tsed": {
"convention": "conv_default",
"architecture": "arc_default",
"packageManager": "yarn_berry"
},
"packageManager": "yarn@3.6.4"
}