forked from snapshot-labs/score-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.22 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "snapshot-score",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"postinstall": "husky install",
"lint": "eslint src/ test/",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"build": "tsc",
"postbuild": "copyfiles -u 0 \"src/**/*.md\" build/ && copyfiles -u 0 \"src/**/*.json\" build/",
"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",
"test:strategy": "jest -i test/strategies/unit/strategy.test.ts --testTimeout=300000 --collectCoverage=false --config=jest.config.unit.ts",
"test:strategy:watch": "yarn test:strategy --watch",
"test:validation": "jest -i test/strategies/unit/validation.test.ts --testTimeout=300000 --collectCoverage=false --config=jest.config.unit.ts",
"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/abi": "^5.6.4",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.6.2",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/constants": "^5.6.1",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/hash": "^5.6.1",
"@ethersproject/keccak256": "^5.6.1",
"@ethersproject/providers": "^5.6.8",
"@ethersproject/solidity": "^5.6.1",
"@ethersproject/strings": "^5.6.1",
"@ethersproject/units": "^5.6.1",
"@ethersproject/wallet": "^5.6.2",
"@ethersproject/web": "^5.6.1",
"@snapshot-labs/keycard": "0.5.1",
"@snapshot-labs/snapshot-metrics": "^1.4.3",
"@snapshot-labs/snapshot-sentry": "^3.0.1",
"@snapshot-labs/snapshot.js": "^0.14.25",
"@spruceid/didkit-wasm-node": "^0.2.1",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v3-sdk": "^3.9.0",
"blakejs": "^1.2.1",
"cors": "^2.8.5",
"cross-fetch": "^3.1.6",
"dotenv": "^16.0.3",
"eth-ens-namehash": "^2.0.8",
"express": "^4.17.1",
"express-rate-limit": "^6.9.0",
"json-to-graphql-query": "^2.2.4",
"nodemon": "^2.0.15",
"rate-limit-redis": "^3.0.2",
"redis": "^4.2.0",
"starknet": "6.11.0",
"ts-node": "^10.9.1",
"tulons": "^0.0.7",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.{js,ts,json}": [
"yarn lint:fix"
]
},
"devDependencies": {
"@snapshot-labs/eslint-config": "^0.1.1",
"@snapshot-labs/prettier-config": "^0.1.0",
"@types/express": "^4.17.11",
"@types/jest": "^29.5.3",
"@types/node": "^14.14.21",
"copyfiles": "^2.4.1",
"dotenv-cli": "^7.2.1",
"eslint": "^9.0.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"
},
"prettier": "@snapshot-labs/prettier-config",
"engines": {
"node": ">=22.6.0"
},
"resolutions": {
"@uniswap/v3-periphery": "1.4.1"
}
}