-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": "fairdrop-backend",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"start": "./node_modules/.bin/pm2 start index.ts --name fairdrop-backend",
"build": "tsc --project ./",
"list": "./node_modules/.bin/pm2 list",
"logs": "./node_modules/.bin/pm2 logs fairdrop-backend",
"postinstall": "./node_modules/.bin/pm2 install typescript",
"stop": "./node_modules/.bin/pm2 delete fairdrop-backend",
"yarn": "./node_modules/.bin/yarn"
},
"dependencies": {
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v3-sdk": "^3.5.1",
"bignumber.js": "^9.0.1",
"cors": "^2.8.5",
"ethers": "^5.1.4",
"express": "^4.17.1",
"mongodb": "^3.6.7",
"mongoose": "^5.12.10",
"node-cache": "^5.1.2",
"nodemon": "^2.0.7",
"pm2": "^5.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"yarn": "^1.22.15"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@types/supertest": "^2.0.11",
"jest": "^26.6.3",
"supertest": "^6.1.3",
"ts-jest": "^26.5.6"
}
}