forked from codacy-badger/VancedHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
67
68
69
70
{
"name": "vanced-helper",
"version": "2.0.0",
"description": "",
"author": "VenNeptury",
"license": "AGPL-3.0",
"main": "dist/index.js",
"eslintIgnore": [
"dist",
".vscode"
],
"scripts": {
"start": "npm run build && export NODE_ENV=production && node .",
"dev": "npm run build && export NODE_ENV=development && node .",
"prod": "npm run clean & npm run build && export NODE_ENV=production && node .",
"test": "tsc -p tsconfig.test.json && npm run lint",
"lint": "eslint ./src/**/*.ts --fix",
"clean": "rm -rf dist/*",
"reinstall": "npm cache clean --force && rm -rf node_modules && rm yarn.lock && yarn install",
"build": "tsc",
"push": "func() { git add . && git commit -m \"$1\" && git push; }; func"
},
"husky": {
"hooks": {
"pre-commit": "precise-commits && npm run test"
}
},
"dependencies": {
"@discordjs/opus": "^0.3.2",
"canvas": "^2.6.1",
"chrono-node": "^2.1.8",
"common-tags": "^1.8.0",
"discord.js": "^12.4.0",
"mongoose": "^5.10.9",
"node-fetch": "^2.6.1",
"ordinal": "^1.0.3",
"sodium": "^3.0.2",
"tinycolor2": "^1.4.2",
"ytdl-core-discord": "^1.2.4"
},
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.14.2",
"@types/node-fetch": "^2.5.7",
"@types/tinycolor2": "^1.4.2",
"@types/ws": "^7.2.7",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-config-marine": "^7.2.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"precise-commits": "^1.0.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"eslintConfig": {
"extends": [
"marine/node",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-unnecessary-condition": "off"
}
}
}