-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "BadassBoard",
"version": "0.4.4",
"main": "app.js",
"author": "Maxime Vanderwegen",
"license": "AGPL-3.0-or-later",
"browserslist": "last 4 versions",
"scripts": {
"start": "node app.js",
"sass": "sass ./client/scss/index.scss:./client/scss/app.css --style compressed",
"minify": "node minify.js",
"prefix": "postcss ./client/scss/404.css --use autoprefixer -d ./client/scss/prefixed && postcss ./client/scss/app.css --use autoprefixer -d ./client/scss/prefixed"
},
"dependencies": {
"adm-zip": "^0.5.2",
"axios": "^0.28.0",
"cheerio": "^1.0.0-rc.3",
"compression": "^1.7.4",
"ejs": "^3.1.10",
"express": "^4.19.2",
"feedparser-promised": "^2.0.1",
"http": "^0.0.1-security",
"ip": "^1.1.9",
"lodash": "^4.17.19",
"natural": "^3.0.0",
"opusscript": "^0.0.7",
"puppeteer": "^7.0.0",
"rotten-parser": "^0.2.0",
"socket.io": "^3.1.0",
"socket.io-client": "^3.1.0",
"ytdl-core": "^4.0.2"
},
"devDependencies": {
"autoprefixer": "^10.2.4",
"minify": "^7.0.0",
"postcss": "^8.4.31",
"postcss-cli": "^8.3.1",
"scss": "^0.2.4"
}
}