forked from snapshot-labs/snapshot-sidekick
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.78 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
{
"name": "snapshot-sidekick",
"version": "0.0.1",
"main": "index.js",
"repository": "snapshot-labs/snapshot-sidekick",
"license": "MIT",
"scripts": {
"lint:nofix": "eslint . --ext .ts,.json --ignore-pattern '/dist/*'",
"lint": "yarn lint:nofix --fix",
"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",
"typecheck": "tsc --noEmit",
"test": "PORT=3003 start-server-and-test 'yarn start:test' 3003 'dotenv -e test/.env.test jest --runInBand'",
"test:unit": "dotenv -e test/.env.test jest test/unit/",
"test:e2e": "PORT=3003 start-server-and-test 'yarn start:test' 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' 3003 'dotenv -e test/.env.test jest --runInBand --collectCoverage=false --updateSnapshot test/e2e/'"
},
"eslintConfig": {
"extends": "@snapshot-labs"
},
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"prettier": "@snapshot-labs/prettier-config",
"dependencies": {
"@apollo/client": "^3.7.17",
"@aws-sdk/client-s3": "^3.367.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@sentry/node": "^7.57.0",
"@snapshot-labs/snapshot.js": "0.4.97",
"bluebird": "^3.7.2",
"compression": "^1.7.4",
"connection-string": "^4.3.6",
"cors": "^2.8.5",
"cross-fetch": "^4.0.0",
"express": "^4.18.2",
"express-prom-bundle": "^6.6.0",
"graphql": "^16.7.1",
"morgan": "^1.10.0",
"multiformats": "^9",
"mysql": "^2.18.1",
"prom-client": "^14.2.0"
},
"devDependencies": {
"@snapshot-labs/eslint-config": "^0.1.0-beta.9",
"@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.2",
"@types/morgan": "^1.9.4",
"@types/mysql": "^2.15.21",
"@types/node": "^20.4.1",
"@types/serve-favicon": "^2.5.4",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"copyfiles": "^2.4.1",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.2.1",
"eslint": "^8.43.0",
"eslint-plugin-prettier": "5",
"jest": "^29.6.1",
"jest-environment-node-single-context": "^29.1.0",
"nodemon": "^2.0.22",
"prettier": "^3.0.0",
"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"
}
}