-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
68 lines (68 loc) · 2.11 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "snapshot-score",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"postinstall": "husky install",
"lint": "eslint src/ test/ --ext .ts",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "node build/src/index.js",
"test:unit": "jest --config=jest.config.unit.ts",
"test:unit:watch": "yarn test:unit --watch",
"start:test": "dotenv -e test/.env.test yarn dev",
"test": "PORT=3033 start-server-and-test 'yarn start:test' 3033 'dotenv -e test/.env.test jest --runInBand'",
"test:e2e": "PORT=3033 start-server-and-test 'yarn start:test' 3033 'dotenv -e test/.env.test jest --runInBand --collectCoverage=false test/e2e/'"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.18.0",
"@ethersproject/address": "^5.7.0",
"@snapshot-labs/keycard": "0.5.1",
"@snapshot-labs/snapshot-metrics": "^1.4.1",
"@snapshot-labs/snapshot-sentry": "^1.5.5",
"@snapshot-labs/strategies": "https://github.com/snapshot-labs/snapshot-strategies#master",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-rate-limit": "^6.9.0",
"nodemon": "^2.0.15",
"rate-limit-redis": "^3.0.2",
"redis": "^4.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.{js,ts,json}": [
"yarn lint:fix"
]
},
"devDependencies": {
"@snapshot-labs/eslint-config": "^0.1.0-beta.18",
"@snapshot-labs/prettier-config": "^0.1.0-beta.18",
"@types/express": "^4.17.11",
"@types/jest": "^29.5.3",
"@types/node": "^14.14.21",
"dotenv-cli": "^7.2.1",
"eslint": "8.28.0",
"husky": "^8.0.3",
"jest": "^28.0.0",
"jest-environment-node-single-context": "28",
"lint-staged": "^14.0.0",
"prettier": "^3.0.3",
"start-server-and-test": "^2.0.0",
"supertest": "^6.3.3",
"ts-jest": "^28.0.0"
},
"eslintConfig": {
"extends": "@snapshot-labs"
},
"prettier": "@snapshot-labs/prettier-config",
"engines": {
"node": ">=16 < 17 || >= 18"
},
"resolutions": {
"@uniswap/v3-periphery": "1.4.1"
}
}