-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "odd-heroku",
"version": "0.1.0",
"description": "A web frontend for OpenDirectoryDownloader",
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch": "nodemon --ignore scans/ --ignore public/",
"dev": "concurrently 'npm:watch' 'npm:serve'",
"serve": "cd public && npm run dev",
"build": "cd public && npm i && npm run build"
},
"author": "Chaphasilor",
"license": "GPL-3.0",
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^10.0.0",
"@tailwindcss/forms": "^0.3.2",
"@tailwindcss/typography": "^0.4.0",
"better-logging": "^4.4.1",
"dotenv": "^8.2.0",
"form-data": "^4.0.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-compress": "^5.0.1",
"koa-force-https": "^2.0.1",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"node-fetch": "^2.6.1",
"open-directory-downloader": "^8.0.1",
"uuid": "^8.3.2",
"ws": "^7.5.3",
"zlib": "^1.0.5"
},
"devDependencies": {
"@tailwindcss/jit": "^0.1.10",
"autoprefixer": "^10.0.1",
"browser-sync": "^2.26.13",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^6.2.0",
"css-loader": "^5.0.0",
"cssnano": "^5.1.12",
"file-loader": "^6.1.1",
"postcss": "^8.3.6",
"postcss-loader": "^4.0.4",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.4"
}
}