forked from yodhcn/kikoeru-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "kikoeru-express",
"version": "0.3.0",
"description": "server",
"bin": "app.js",
"pkg": {
"scripts": [
"filesystem/scanner.js",
"dist/**/*.js"
],
"assets": [
"dist/**/*",
"static/**/*"
]
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"scan": "node ./filesystem/scanner.js",
"build": "pkg -t win package.json --out-path package"
},
"author": "Watanuki-Kimihiro",
"license": "GPL-3.0-or-later",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"connect-history-api-fallback": "^1.6.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-validator": "^6.4.0",
"htmlparser2": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.11",
"limit-promise": "^1.0.4",
"md5": "^2.2.1",
"natural-orderby": "^2.0.3",
"recursive-readdir": "^2.2.2",
"socket.io": "^2.3.0",
"socketio-jwt-auth": "^0.1.0",
"sqlite3": "^4.1.1",
"string-random": "^0.1.3",
"tunnel-agent": "^0.6.0"
}
}