-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
83 lines (83 loc) · 3.02 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "snapshot-sidekick",
"version": "0.0.1",
"main": "index.js",
"repository": "snapshot-labs/snapshot-sidekick",
"license": "MIT",
"scripts": {
"lint": "eslint src/ test/ data/ --ext .ts,.json",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.json && copyfiles data/*.json data/*.txt public/* dist/",
"dev": "nodemon src/index.ts -e js,ts",
"start": "node dist/src/index.js",
"start:test": "dotenv -e test/.env.test yarn dev",
"test": "PORT=3003 start-server-and-test 'yarn start:test' http://localhost:3003 'dotenv -e test/.env.test jest --runInBand'",
"test:unit": "dotenv -e test/.env.test jest test/unit/",
"test:integration": "dotenv -e test/.env.test jest test/integration/",
"test:e2e": "PORT=3003 start-server-and-test 'yarn start:test' http://localhost:3003 'dotenv -e test/.env.test jest --runInBand --collectCoverage=false test/e2e/'",
"test:e2e:update-snapshot": "PORT=3003 start-server-and-test 'yarn start:test' http://localhost:3003 'dotenv -e test/.env.test jest --runInBand --collectCoverage=false --updateSnapshot test/e2e/'"
},
"eslintConfig": {
"extends": "@snapshot-labs"
},
"engines": {
"node": "^18.0.0"
},
"prettier": "@snapshot-labs/prettier-config",
"dependencies": {
"@apollo/client": "^3.9.2",
"@aws-sdk/client-s3": "^3.367.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@snapshot-labs/snapshot-metrics": "^1.4.1",
"@snapshot-labs/snapshot-sentry": "^1.5.5",
"@snapshot-labs/snapshot.js": "^0.11.16",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"connection-string": "^4.4.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"graphql": "^16.7.1",
"multiformats": "^9",
"mysql": "^2.18.1",
"node-fetch": "^2.7.0",
"openai": "^4.29.2",
"remove-markdown": "^0.5.0"
},
"devDependencies": {
"@snapshot-labs/eslint-config": "^0.1.0-beta.15",
"@snapshot-labs/prettier-config": "^0.1.0-beta.7",
"@types/bluebird": "^3.5.38",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/mysql": "^2.15.21",
"@types/node": "^20.4.8",
"@types/node-fetch": "^2.6.4",
"@types/remove-markdown": "^0.3.4",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"copyfiles": "^2.4.1",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.2.1",
"eslint": "^8.47.0",
"eslint-plugin-prettier": "5",
"jest": "^29.6.2",
"jest-environment-node-single-context": "^29.1.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"start-server-and-test": "^2.0.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}