-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.99 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
{
"name": "merkl-dispute",
"version": "1.0.0",
"main": "index.js",
"author": "picodes <[email protected]>",
"license": "MIT",
"scripts": {
"bot:hot": "yarn ts-node ./src/index.ts",
"bot": "node ./build/index.js",
"start": "node ./build/index.js serve",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts serve",
"build": "tsc -p . || true",
"lint": "eslint src --fix",
"test": "mocha --require ts-node/register tests/**/*.test.ts",
"update": "chmod +x ./scripts/deploy.sh && ./scripts/deploy.sh",
"deploy": "chmod +x ./scripts/publishAndDeploy.sh && ./scripts/publishAndDeploy.sh",
"gcp-build": "yarn build",
"merge": "git checkout staging && git pull origin staging && yarn && git checkout main && git pull origin main && git merge --ff-only staging && git push --force-with-lease origin main",
"start:local": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts serve",
"publish-image": "chmod +x ./scripts/publish.sh && ./scripts/publish.sh"
},
"dependencies": {
"@angleprotocol/sdk": "2.9.1",
"@google-cloud/secret-manager": "^4.2.2",
"@octokit/rest": "19.0.13",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"axios": "^0.27.2",
"chalk": "^4.1.0",
"commander": "^11.0.0",
"discord.js": "^14.7.1",
"dotenv": "^16.0.1",
"ethers": "^5.7.2",
"express": "^4.18.1",
"graphql-request": "^6.1.0",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.10",
"moment": "^2.29.4",
"pino": "^8.17.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/graceful-fs": "^4.1.5",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"nodemon": "^2.0.22",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}