This repository was archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.99 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
{
"name": "nike_flash_drop_notifier",
"version": "1.0.0",
"main": "index.js",
"author": "Mateus Ribeiro Bossa <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=dev ts-node-dev --transpile-only --inspect=9229 --exit-child -r dotenv/config src/index.ts",
"build": "npx tsc",
"start": "node -r dotenv/config dist/index.js",
"lint": "eslint . ",
"lint:fix": "eslint --fix .",
"discord:deploy": "npx ts-node -r dotenv/config src/discord-bot/deploy-commands.ts",
"dev:seed": "ts-node-dev --transpile-only --inspect=9229 --exit-child -r dotenv/config src/seeders/NikeStockxSneakersSeeder.ts | pino-pretty --colorize --translateTime='yyyy-mm-dd HH:MM:ss'",
"seed:stockx": "node -r dotenv/config dist/seeders/NikeSneakersSeeder.js"
},
"devDependencies": {
"@types/nodemailer": "^6.4.4",
"@types/pino-pretty": "^4.7.5",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.0",
"prisma": "^3.10.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"@prisma/client": "^3.10.0",
"@types/lodash": "^4.14.179",
"@types/node": "^17.0.21",
"@types/user-agents": "^1.0.2",
"axios": "^0.26.1",
"cheerio": "^1.0.0-rc.10",
"discord-api-types": "^0.28.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"nodemailer": "^6.7.2",
"pino": "^7.8.1",
"pino-pretty": "^7.5.3",
"puppeteer": "^13.4.1",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-block-resources": "^2.3.0",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"user-agents": "^1.0.955"
}
}