forked from bohendo/tipdai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "tipdai",
"version": "0.0.1",
"description": "Tip DAI on twitter, powered by Connext",
"author": "bohendo",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "tsc-watch -p tsconfig.build.json --onSuccess \"node dist/main.js\"",
"start:debug": "tsc-watch -p tsconfig.build.json --onSuccess \"node --inspect-brk dist/main.js\"",
"start:prod": "node dist/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"dependencies": {
"@connext/client": "6.7.1",
"@connext/store": "6.7.1",
"@connext/utils": "6.7.1",
"@nestjs/common": "7.1.3",
"@nestjs/core": "7.1.3",
"@nestjs/platform-express": "7.1.3",
"@nestjs/typeorm": "7.1.0",
"discord.js": "12.2.0",
"dotenv": "8.2.0",
"ethers": "4.0.47",
"express": "4.17.1",
"oauth": "0.9.15",
"openzeppelin-solidity": "3.0.1",
"pg": "8.2.1",
"qs": "6.9.4",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "6.5.5",
"sqlite3": "4.2.0",
"typeorm": "0.2.25"
},
"devDependencies": {
"@connext/types": "6.7.1",
"@types/express": "4.17.6",
"@types/node": "14.0.11",
"@typescript-eslint/eslint-plugin": "3.1.0",
"@typescript-eslint/parser": "3.1.0",
"axios": "0.19.2",
"eslint": "7.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"prettier": "2.0.5",
"ts-node": "8.10.2",
"tsc-watch": "4.2.8",
"tsconfig-paths": "3.9.0",
"tslint": "6.1.2",
"typescript": "3.9.5"
}
}