forked from espimarisa/hibiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.64 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"private": "true",
"name": "hibikiapp",
"version": "3.3.11",
"description": "The best all-in-one Discord bot! Automod, fun, music, utilities, and more. Customizable, easy-to-use, and fully translatable.",
"author": "Espi <[email protected]> (https://espi.me)",
"contributors": [
"resolved <[email protected]> (https://github.com/resolvedxd)",
"cth103 <[email protected]> (https://github.com/cthpw103)",
"TTtie <[email protected]> (https://tttie.cz)"
],
"license": "AGPL-3.0-or-later",
"homepage": "https://hibiki.app",
"main": "dist/src/index.js",
"bugs": {
"url": "https://github.com/sysdotini/hibiki/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sysdotini/hibiki.git"
},
"engines": {
"npm": ">=6.9.0",
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc",
"build:purgecss": "cross-env purgecss -c purgecss.config.js -o ./src/webserver/public/css/",
"build:scss": "cross-env sass --no-source-map ./src/webserver/public/scss/:./src/webserver/public/css/ && npm run build:purgecss",
"build:static": "cross-env copyfiles './src/webserver/**/**/*.{css,liquid,jpg,js,png}' './dist/'",
"dev": "cross-env concurrently \"cross-env sass ./src/webserver/public/scss/:./src/webserver/public/css/ --watch\" \"cross-env nodemon\"",
"format": "cross-env prettier --config .prettierrc 'src/**/*.{liquid,js,json,scss,ts}' --write",
"lint": "eslint --fix .",
"prebuild": "cross-env rimraf ./dist/",
"postbuild": "npm run build:scss && npm run build:static",
"postinstall": "cross-env copyfiles './node_modules/bulmaselect/dist/index.js' './src/webserver/public/js/bulmaselect/' -f",
"start": "npm run build && cross-env NODE_ENV=production node dist/src/index.js",
"pm2": "npm run build && pm2 start pm2.config.json",
"test": "tsc && eslint ."
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@sentry/node": "^6.3.4",
"@sysdotini/erela.js-spotify": "^1.2.4",
"axios": "^0.21.1",
"bulma": "^0.9.2",
"bulma-checkradio": "^1.1.1",
"bulmaselect": "^2.0.8",
"canvas": "^2.7.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dayjs": "^1.10.4",
"erela.js": "^2.3.3",
"eris": "^0.15.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"express-session": "^1.17.1",
"helmet": "^4.5.0",
"liquidjs": "^9.23.4",
"passport": "^0.4.1",
"passport-discord": "^0.1.4",
"rethinkdb-ts": "^2.4.10",
"session-rethinkdb-ts": "^1.1.0",
"terser": "^5.7.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.2"
},
"devDependencies": {
"@sentry/types": "^6.3.5",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/csurf": "^1.11.1",
"@types/express": "4.17.11",
"@types/express-rate-limit": "^5.1.1",
"@types/express-session": "^1.17.3",
"@types/node": "^15.0.1",
"@types/passport-discord": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"concurrently": "^6.0.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.7",
"pm2": "^4.5.6",
"prettier": "^2.2.1",
"purgecss": "^4.0.3",
"rimraf": "^3.0.2",
"sass": "^1.32.12",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"optionalDependencies": {
"@discordjs/opus": "^0.5.0",
"bufferutil": "^4.0.3",
"erlpack": "^0.1.3",
"eventemitter3": "^4.0.7",
"zlib-sync": "^0.1.7"
}
}