-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.5 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
{
"name": "symbol-statistics-service",
"version": "1.2.0",
"description": "",
"scripts": {
"dev": "nodemon",
"debug": "node --inspect-brk=0.0.0.0:9229 --require ts-node/register src/app.ts",
"build": "shx rm -rf ./dist/ && tsc -p tsconfig.build.json && shx cp -r openapi dist/openapi",
"build:clients": "bash scripts/build-clients.sh",
"start": "node dist/app.js",
"version": "echo $npm_package_version",
"prettier": "prettier --write ./src",
"lint": "eslint --cache src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"style:fix": "npm run prettier && npm run lint:fix",
"test:openapi": "swagger-cli validate openapi/openapi.yml",
"test": "ts-mocha --paths ./test/**.test.ts"
},
"main": "dist/app.js",
"typings": "dist/index.d.ts",
"_moduleAliases": {
"@src": "dist"
},
"devDependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"ajv": "^8.12.0",
"ajv-draft-04": "^1.0.0",
"@openapitools/openapi-generator-cli": "^2.6.0",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/humanize-duration": "^3.27.1",
"@types/mocha": "^10.0.0",
"@types/mongoose": "^5.7.14",
"@types/sinon": "^17.0.3",
"@types/winston": "^2.4.4",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^7.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^11.0.1",
"nodemon": "^3.1.9",
"openapi-to-postmanv2": "^4.25.0",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"sinon": "^19.0.2",
"swagger-cli": "^4.0.4",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.7.2",
"ws": "^8.11.0"
},
"dependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/tcp-ping": "^0.1.3",
"@types/uuid": "^10.0.0",
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"humanize-duration": "^3.27.3",
"module-alias": "^2.2.2",
"mongoose": "^8.9.5",
"symbol-sdk": "^3.2.3",
"tcp-ping": "^0.1.1",
"utf8": "^3.0.0",
"uuid": "^11.0.5",
"winston": "^3.8.2"
}
}