forked from LukasBures/olynthus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.46 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
{
"name": "olynthus",
"version": "0.1.0",
"main": "main.ts",
"repository": "https://github.com/Arda-finance/olynthus.git",
"author": "arda.finance",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/main.js",
"start:dev": "nodemon main.ts --config nodemon.json",
"start:staging": "yarn install && tsc && node dist/main.js",
"start:production": "yarn install && tsc && node dist/main.js",
"check:format": "prettier --check \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"ngrok": "node ngrok-server.js",
"test:int": "env-cmd -f .env.test.sample jest -i --no-cache --config jest-int.json --runInBand --detectOpenHandles --forceExit",
"test:int:watch": "env-cmd -f .env.test.sample jest -i --no-cache --config jest-int.json --runInBand --detectOpenHandles --forceExit --watch",
"test:int:pipeline": " env-cmd -f .env.test.pipeline jest -i --no-cache --config jest-int.json --runInBand --detectOpenHandles --forceExit --coverage --ci --json --testLocationInResults --outputFile=report.json"
},
"dependencies": {
"axios": "^1.3.2",
"axios-cache-interceptor": "^1.0.1",
"axios-rate-limit": "^1.3.0",
"bignumber.js": "^9.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"clickhouse": "^2.6.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"lodash": "^4.17.21",
"nodemon": "^2.0.20",
"env-cmd": "^10.1.0",
"jest": "^29.2.2",
"psl": "^1.9.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.6.2",
"ts-node": "^10.9.1",
"web3": "^1.8.1",
"winston": "^3.8.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.1",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.8",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"nock": "^13.2.9",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"ngrok": "^4.3.3",
"omit-deep-lodash": "^1.1.7",
"prettier": "^2.8.4",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"typescript": "^4.9.5"
}
}