-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "animeshot2",
"version": "0.11.5",
"description": "An open and searchable image repository in Node.js",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon --ext js,pug,json index.js",
"bot": "node bot.js",
"db:migrate": "node ./scripts/migrate.js",
"db:reset": "node ./scripts/reset.js",
"db:seed": "node ./scripts/seed.js",
"db:drop": "node ./scripts/drop.js",
"db:mod": "node ./scripts/mod.js",
"db:import": "node ./scripts/import.js",
"db:upload": "node ./scripts/upload.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitinn/animeshot2.git"
},
"author": "David Frank",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/bitinn/animeshot2/issues"
},
"homepage": "https://github.com/bitinn/animeshot2#readme",
"dependencies": {
"@purest/providers": "^1.0.4",
"cuid": "^2.1.8",
"del": "^3.0.0",
"faker": "^4.1.0",
"grant-koa": "^4.7.0",
"hepburn": "^1.2.0",
"koa": "^2.13.4",
"koa-better-flash": "0.0.3",
"koa-body": "^4.2.0",
"koa-csrf": "^3.0.8",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-session": "^5.13.1",
"koa-sslify": "^2.2.0",
"koa-static": "^5.0.0",
"koa-trie-router": "^2.1.7",
"koa-views": "^6.3.1",
"make-dir": "^1.3.0",
"move-file": "^1.2.0",
"n-readlines": "^1.0.1",
"openrecord": "^2.11.1",
"pinyin": "^2.11.2",
"promptly": "^3.2.0",
"pug": "^3.0.2",
"purest": "^3.1.0",
"request": "^2.88.2",
"sharp": "^0.30.7",
"sqlite3": "^5.0.0",
"telegraf": "^3.40.0",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}