forked from EthGlobalBangkok/polyswap-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.54 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.54 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
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
{
"name": "polyswap",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev -p 3000 --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"get-polymarket-creds": "tsx script/getPolymarketCreds.ts",
"start:listener": "tsx src/backend/listener.ts",
"start:listener-only": "tsx src/backend/listener.ts --listener-only",
"start:market-updater": "tsx src/backend/listener.ts --market-update-only",
"start:market-updater-standalone": "tsx script/marketUpdater.ts",
"saveMarkets": "tsx script/getMarkets.ts",
"db:up": "docker compose up -d postgres",
"db:down": "docker compose down",
"db:logs": "docker compose logs -f postgres",
"db:import": "tsx script/importJsonData.ts",
"cancel-polymarket-orders": "tsx script/cancelPolymarketOrders.ts",
"sell-polymarket-positions": "tsx script/sellPolymarketPositions.ts",
"check-polymarket-orders": "tsx script/checkPolymarketOrders.ts",
"prepare": "husky"
},
"dependencies": {
"@safe-global/protocol-kit": "^6.1.1",
"@safe-global/safe-apps-sdk": "^9.1.0",
"@safe-global/types-kit": "^3.0.0",
"@tanstack/react-query": "^5.85.3",
"@types/cors": "^2.8.19",
"@types/swagger-ui-react": "^5.18.0",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"ethers": "^6.15.0",
"express": "^5.1.0",
"next": "15.4.10",
"next-swagger-doc": "^0.4.1",
"pg": "^8.16.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"recharts": "^3.6.0",
"swagger-ui-react": "^5.31.0",
"tslib": "^2.8.1",
"viem": "2.x",
"wagmi": "^2.16.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@polymarket/clob-client": "^4.20.0",
"@types/express": "^5.0.3",
"@types/node": "^20",
"@types/pg": "^8.15.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.4.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5"
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}