forked from reservoirprotocol/reservoir-sync-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.19 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
{
"name": "reservoir-sync-node",
"scripts": {
"start": "yarn build && yarn database:prepare && node dist/index.js",
"build": "yarn run clean && tsc",
"develop": "nodemon",
"database:prepare": "yarn database:deploy && yarn database:generate",
"database:generate": "npx prisma generate",
"database:deploy": "npx prisma migrate deploy",
"purge:asks": "node ./scripts/database-flush-ask.js",
"purge:sales": "node ./scripts/database-flush-sales.js",
"purge:backup": "node ./scripts/backup-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": {
"@prisma/client": "4.11.0",
"@reservoir0x/reservoir-sdk": "^0.6.4",
"@sentry/node": "^7.44.2",
"@sentry/types": "^7.44.2",
"@types/node-schedule": "^2.1.0",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"axios": "^1.3.4",
"colors": "^1.4.0",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-http": "^1.17.1",
"node-cron": "^3.0.2",
"node-fetch": "2.6.9",
"node-schedule": "^2.1.1",
"pg": "^8.10.0",
"pg-promise": "^11.4.1",
"prisma": "4.11.0",
"redis": "^4.6.5",
"sentry": "^0.1.2",
"ts-node": "10.9.1",
"tsc": "^2.0.4",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
"uuidv4": "^6.2.13",
"web3": "^1.9.0",
"winston": "^3.8.2",
"ws": "^8.13.0"
},
"engines": {},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.0",
"@types/node-cron": "^3.0.7",
"@types/pg": "^8.6.6",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.35.0",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5"
}
}