forked from snapshot-labs/score-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 808 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
{
"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": "github:snapshot-labs/snapshot-strategies#master",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"eslint": "^6.7.2",
"express": "^4.17.1",
"nodemon": "^2.0.15",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.21",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^1.19.1"
}
}