-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 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": "warpy",
"version": "1.0.0",
"scripts": {
"build": "tsc",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --ext .js,.ts . --fix",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"start": "node dist/src/app.js",
"dev": "yarn run lint:fix && nodemon"
},
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"discord.js": "^14.13.0",
"dotenv": "^16.0.3",
"ethers": "^6.4.2",
"exponential-backoff": "^3.1.1",
"express": "^4.18.2",
"warp-contracts": "^1.4.34",
"warp-contracts-lmdb": "^1.1.10",
"warp-contracts-plugin-deploy": "^1.0.8",
"warp-contracts-plugin-vrf": "^1.0.4"
},
"devDependencies": {
"@types/cors": "^2.8.15",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.59.7",
"csv-parser": "^3.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "*"
}
}