-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "opensea-submarine",
"version": "0.1.1",
"description": "🏴☠️ 🧸 Enabling subversive transactions with OpenSea's GraphQL backend using Express middleware.",
"main": "dist",
"repository": "https://github.com/cawfree/opensea-submarine",
"author": "cawfree <hello@cawfree.com>",
"license": "MIT",
"private": false,
"scripts": {
"start": "npx ts-node scripts/start",
"pm2:start": "pm2 start npm --name \"opensea-submarine\" -- run \"start\"",
"build": "tsc"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.2",
"@types/chalk": "^2.2.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"pm2": "^5.2.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"chalk": "4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"find-process": "^1.4.7",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6",
"puppeteer-autoscroll-down": "^1.1.1",
"puppeteer-core": "^13.5.2",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0"
}
}