-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.45 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
71
72
73
74
75
76
77
78
{
"name": "katarina-bot",
"version": "2.0.0",
"main": "src/index.js",
"author": "Dartv",
"license": "MIT",
"private": false,
"scripts": {
"clean": "npx rimraf dist",
"build": "npx tsc -p tsconfig.json",
"prebuild": "npm run clean",
"start": "node dist/index.js",
"start:env": "lookenv --path=./env/lookenv.prod.js -- node dist/index.js",
"dev": "lookenv --path=./env/lookenv.dev.js -- ./node_modules/.bin/tsc-watch --onSuccess \"node ./dist/index.js\"",
"eslint": "npx eslint",
"lint": "npx eslint src --ext .js,.jsx,.ts,.tsx",
"lint:staged": "npx lint-staged",
"deploy:setup": "pm2 deploy ecosystem.config.js production setup",
"deploy:update": "pm2 deploy ecosystem.config.js production update",
"deploy:revert": "pm2 deploy ecosystem.config.js production revert 1",
"deploy:restart": "pm2 deploy ecosystem.config.js production exec \"pm2 restart all\"",
"deploy": "pm2 deploy ecosystem.config.js production --force",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.ts": [
"npm run eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged"
}
},
"dependencies": {
"@hokify/agenda": "^6.2.12",
"agenda": "^3.1.0",
"date-fns": "^2.15.0",
"deepmerge": "^4.2.2",
"discord.js": "^12.5.3",
"diskat": "github:Dartv/diskat",
"dotenv": "^8.2.0",
"fuse.js": "^6.4.0",
"mongoose": "^5.9.22",
"p-queue": "^6.6.2",
"puppeteer": "^4.0.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"signale": "^1.4.0",
"string-similarity": "^4.0.1",
"vrchat": "^1.7.2",
"yargs-parser": "^18.1.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.10.1",
"@types/agenda": "^2.0.8",
"@types/mongoose": "^5.7.37",
"@types/node": "^14.0.13",
"@types/puppeteer": "^3.0.0",
"@types/request-promise-native": "^1.0.17",
"@types/signale": "^1.4.1",
"@types/yargs-parser": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-import": "^2.21.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lookenv": "^1.0.1",
"tsc-watch": "^4.2.9",
"typescript": "^4.8.2"
}
}