forked from snapshot-labs/score-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 809 Bytes
/
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
{
"name": "snapshot-score",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts --fix",
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "node build/src/index.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.18.0",
"@snapshot-labs/strategies": "https://github.com/snapshot-labs/snapshot-strategies#master",
"cors": "^2.8.5",
"eslint": "^6.7.2",
"express": "^4.17.1",
"nodemon": "^2.0.15",
"redis": "^4.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@snapshot-labs/eslint-config": "^0.1.0-beta.2",
"@types/express": "^4.17.11",
"@types/node": "^14.14.21"
},
"engines": {
"node": "^16.10.0"
},
"resolutions": {
"@uniswap/v3-periphery": "1.4.1"
}
}