forked from reruin/sharelist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "sharelist",
"version": "0.1.0",
"bin": "app.js",
"repository": "https://github.com/reruin/sharelist",
"license": "Apache-2.0",
"scripts": {
"start": "node app.js",
"dev": "./node_modules/.bin/nodemon app.js -i ./cache",
"prd": "pm2 start app.js --name sharelist --env prod",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pkg . -t node12-win-x64 --output build/sharelist_windows_amd64.exe && pkg . -t node12-macos-x64 --output build/sharelist_macos_amd64 && pkg . -t node12-linux-x64 --output build/sharelist_linux_amd64"
},
"dependencies": {
"@koa/cors": "^2.2.1",
"iconv-lite": "^0.5.0",
"koa": "^2.2.0",
"koa-body": "^4.1.1",
"koa-i18n": "^2.1.0",
"koa-json": "^2.0.2",
"koa-locales": "^1.8.0",
"koa-logger": "^2.0.1",
"koa-onerror": "^1.2.1",
"koa-router": "^7.1.1",
"koa-session-minimal": "^3.0.4",
"koa-static": "^3.0.0",
"koa-static-cache": "^5.1.2",
"koa-views": "^6.2.1",
"less-middleware": "^2.2.1",
"lowdb": "^1.0.0",
"markdown-it": "^10.0.0",
"mime": "^2.4.2",
"pug": "^2.0.4",
"webdav": "^2.6.0",
"write-file-atomic": "^2.4.2",
"xml2js": "^0.4.19",
"yaml": "^1.5.0"
},
"devDependencies": {
"nodemon": "^1.18.4",
"pkg": "^4.4.0",
"pm2": "^2.10.1"
},
"pkg": {
"scripts": [
"./app/plugins/**/*",
"./plugins/*",
"./locales/*"
],
"assets": [
"./app/views/**/*",
"./app/public/**/*"
]
}
}