forked from reservoirprotocol/reservoir-sync-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.28 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
{
"name": "reservoir-sync-node",
"version": "2.1.0-verse",
"scripts": {
"start": "yarn build && yarn build:viewer && yarn move && node dist/index.js",
"build": "yarn run clean && yarn run tsc",
"build:viewer": "cd src/viewer && yarn build",
"develop": "nodemon",
"move": "node ./scripts/contracts-copy.js",
"purge:redis": "node ./scripts/redis-flush.js",
"lint": "yarn run lint:fix && yarn run lint:format",
"lint:fix": "eslint --fix . --ext .ts",
"lint:format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "yarn run test:all",
"clean": "rm -rf dist",
"test:all": "yarn test:unit && yarn test:integration",
"test:unit": "echo unit testing",
"test:integration": "echo integration testing"
},
"packageManager": "[email protected]",
"dependencies": {
"@sentry/node": "^7.44.2",
"@sentry/types": "^7.44.2",
"@types/node": "^16.18.38",
"@types/node-schedule": "^2.1.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"axios": "^1.3.4",
"chart.js": "^4.3.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"module-alias": "^2.2.2",
"nats": "^2.28.2",
"node-cron": "^3.0.2",
"node-fetch": "2.6.9",
"node-schedule": "^2.1.1",
"pg": "^8.10.0",
"pg-promise": "^11.4.1",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"protobufjs": "^7.4.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"redis": "^4.6.7",
"sentry": "^0.1.2",
"swr": "^2.2.0",
"ts-node": "10.9.1",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
"uuidv4": "^6.2.13",
"web3-validator": "^1.0.2",
"ws": "^8.13.0"
},
"engines": {},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node-cron": "^3.0.7",
"@types/pg": "^8.6.6",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.35.0",
"eslint-config-react-app": "^7.0.1",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"protobufjs-cli": "^1.1.3"
}
}