-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.97 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
{
"name": "kolektivo-treasury-services",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"build": "cross-env DOTENV_CONFIG_PATH=.env tsc",
"build-prod": "cross-env production=1 DOTENV_CONFIG_PATH=.env.production tsc",
"start": "cross-env DOTENV_CONFIG_PATH=.env ts-node src/index.ts",
"start-prod": "cross-env production=1 DOTENV_CONFIG_PATH=.env.production ts-node src/index.ts",
"fetchAbis": "node scripts/fetchAbis.js",
"deploy": "cross-env DOTENV_CONFIG_PATH=.env node scripts/deploy.js",
"deploy-prod": "cross-env production=1 DOTENV_CONFIG_PATH=.env.production node scripts/deploy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kolektivo/kolektivo-treasury-services.git"
},
"keywords": [
"kolektivo",
"treasury",
"kolektivo network"
],
"author": "Curve Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kolektivo/kolektivo-treasury-services/issues"
},
"homepage": "https://github.com/Kolektivo/kolektivo-treasury-services#readme",
"devDependencies": {
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"cross-env": "^7.0.3",
"defender-autotask-client": "^1.42.0",
"defender-autotask-utils": "^1.42.0",
"dotenv": "^8.2.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"fs-extra": "^11.1.1",
"glob": "^10.2.1",
"ts-node": "^9.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^0.21.2",
"defender-relay-client": "^1.42.0",
"ethers": "^5.5.3"
}
}