This repository has been archived by the owner on Oct 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "animeshot",
"version": "0.1.5",
"description": "An open and searchable image repository in Node.js",
"main": "index.js",
"scripts": {
"start": "node index.js",
"setup": "npm install && npm run migration",
"migration": "node migration/migration.js",
"dev": "NODE_ENV=dev nodemon --ext js,marko --ignore '*/*.marko.js' index.js",
"purge": "find ./upload-tmp -maxdepth 1 -type f -not -name .gitignore -exec rm -fv {} + | wc -w",
"cleanup": "find ./upload-tmp -maxdepth 1 -type f -mtime +7 -not -name .gitignore -exec rm -fv {} + | wc -w",
"delete:shot": "node command/delete-shot.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitinn/animeshot.git"
},
"author": "David Frank",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitinn/animeshot/issues"
},
"homepage": "https://github.com/bitinn/animeshot#readme",
"dependencies": {
"co": "^4.6.0",
"co-busboy": "^1.3.1",
"cuid": "^1.3.8",
"escape-string-regexp": "^1.0.5",
"grant-koa": "^3.5.5",
"koa": "^1.2.0",
"koa-bodyparser": "^2.0.1",
"koa-logger": "^1.3.0",
"koa-mount": "^1.3.0",
"koa-router": "^5.4.0",
"koa-session": "^3.3.1",
"koa-static": "^2.0.0",
"marko": "^3.0.3",
"mime-types": "^2.1.10",
"minimist": "^1.2.0",
"mz": "^2.4.0",
"pinyin": "^2.8.0",
"purest": "^3.0.0",
"redis": "^2.5.3",
"sharp": "^0.16.0",
"then-redis": "^2.0.0",
"xss-filters": "^1.2.6",
"yieldb": "^2.7.1"
},
"devDependencies": {
"nodemon": "^1.9.1"
}
}