-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "previewer",
"version": "1.0.5",
"description": "Advanced Link Previews in Discord Chats",
"main": "src/index.ts",
"repository": "https://github.com/saucesteals/previewer",
"author": "Daniel <saucesteals@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=16.6.0"
},
"devDependencies": {
"@types/node": "^16.3.3",
"@types/tough-cookie": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^7.0.1",
"nodemon": "^2.0.13",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc",
"start": "node dist/src/index.js",
"dev": "yarn build && cross-env NODE_ENV=development yarn start",
"watch": "cross-env NODE_ENV=development nodemon",
"lint": "cross-env NODE_ENV=development eslint . --cache --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install .config/husky",
"test": "yarn lint"
},
"dependencies": {
"axios": "^0.21.1",
"axios-cookiejar-support": "^1.0.1",
"bignumber.js": "^9.0.1",
"discord.js": "^13.0.0-dev.63ce065.1626653031",
"dotenv": "^10.0.0",
"tough-cookie": "https://github.com/saucesteals/tough-cookie",
"winston": "^3.3.3"
}
}