forked from samc621/SneakerBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "sneakerbot",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node ./app.js",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"prettier-check": "./node_modules/.bin/prettier --check .",
"prettier-write": "./node_modules/.bin/prettier --write .",
"knex": "knex",
"test": "jest --forceExit --detectOpenHandles",
"test:watch": "jest --watch"
},
"engines": {
"node": "18.16.0"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/samc621/SneakerBot.git"
},
"author": "Samuel Corso",
"license": "MIT",
"bugs": {
"url": "https://github.com/samc621/SneakerBot/issues"
},
"homepage": "https://github.com/samc621/SneakerBot#readme",
"jest": {
"testRegex": "((\\.|/*.)(test))\\.js?$",
"clearMocks": true,
"testEnvironment": "node"
},
"dependencies": {
"axios": "^1.6.0",
"dotenv-flow": "^3.2.0",
"express": "^4.17.1",
"express-validation": "^3.0.8",
"http-proxy-agent": "^5.0.0",
"joi": "^17.4.0",
"knex": "^2.4.0",
"nodemailer": "^6.6.1",
"pg": "^8.6.0",
"proxy-chain": "^1.0.2",
"puppeteer": "^13.5.2",
"puppeteer-cluster": "^0.23.0",
"puppeteer-extra": "^3.1.18",
"puppeteer-extra-plugin-anonymize-ua": "^2.2.17",
"puppeteer-extra-plugin-stealth": "^2.7.8",
"user-agents": "^1.0.705",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@jest/globals": "^27.5.1",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.0.4",
"knex-mock-client": "^2.0.0",
"prettier": "^2.6.1",
"supertest": "^6.1.3"
}
}