-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "aave_simulator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "npm run clean && npm run build && env-cmd --no-override .env node dist/index.js",
"clean": "rm -rf ./db/* && rm -rf ./dist",
"lint": "eslint ./src --ext .js,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/damarnez/aave_simulation.git"
},
"author": "damarnez",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/damarnez/aave_simulation/issues"
},
"homepage": "https://gitlab.com/damarnez/aave_simulation#readme",
"dependencies": {
"bignumber.js": "^9.0.1",
"env-cmd": "^8.0.2",
"ethers": "^5.0.17",
"ganache-cli": "^6.12.0",
"microjob": "^0.7.0",
"worker-farm": "^1.7.0"
},
"devDependencies": {
"tslint": "^5.12.1",
"typechain": "^3.0.0",
"typescript": "^3.3.3",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.1.3"
}
}