-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
{
"name": "alt-scrap",
"version": "3.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"@apollo/client": "^3.6.9",
"conf": "^10.1.1",
"dotenv": "^16.0.0",
"got": "^12.0.1",
"graphql": "^16.5.0",
"graphql-ws": "^5.10.0",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"luxon": "^2.3.1",
"pino": "^7.8.0",
"puppeteer": "^13.4.0",
"ws": "^8.8.1",
"yargs": "^17.3.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.11.6",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@types/jsdom": "^16.2.14",
"@types/lodash": "^4.14.181",
"@types/luxon": "^2.0.9",
"@types/node": "16",
"@types/ws": "^8.5.3",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"pino-pretty": "^7.5.3",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"scripts": {
"start": "yarn cli init --ignore && yarn cli worker",
"build": "rimraf dist && tsc",
"lint": "eslint --ext .{ts,js} src --fix --no-error-on-unmatched-pattern",
"cli": "node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm src/cli.ts",
"cli.dist": "node --no-warnings --experimental-specifier-resolution=node dist/cli.js",
"docker.entrypoint.stealer": "yarn cli.dist stealer",
"docker.entrypoint.bridge": "yarn cli.dist bridge",
"docker.sigma": "docker-compose -f docker-compose.sigma.yml up"
},
"engines": {
"node": ">=16"
}
}