This repository was archived by the owner on Jan 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.49 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
{
"name": "polymarket-parser",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "ts-node src/index.ts",
"migrate": "knex migrate:latest --knexfile src/database/knexfile.ts",
"migrate:prod": "knex migrate:latest --knexfile dist/database/knexfile.js",
"migrate:prod:rollback": "knex migrate:rollback --knexfile dist/database/knexfile.js",
"migrate:rollback": "knex migrate:rollback --knexfile src/database/knexfile.ts",
"migrate:make": "knex migrate:make --knexfile src/database/knexfile.ts",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tentou-tech/polymarket-parser.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tentou-tech/polymarket-parser/issues"
},
"homepage": "https://github.com/tentou-tech/polymarket-parser#readme",
"description": "",
"dependencies": {
"@bull-board/api": "^6.15.0",
"@bull-board/express": "^6.15.0",
"bullmq": "^5.66.2",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"graphql": "^16.12.0",
"graphql-request": "^7.4.0",
"knex": "^3.1.0",
"objection": "^3.1.5",
"pg": "^8.16.3",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"@types/pino": "^7.0.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}