-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 KB
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": "munan-cli-server",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node bin/www.mjs",
"dev": "cross-env NODE_ENV=dev .\\node_modules\\.bin\\nodemon bin/www.mjs",
"prod": "cross-env NODE_ENV=production npx pm2 start bin/www.mjs",
"rollup:dev": "rollup -c --watch --watch.include=src/** -m inline",
"build": "rimraf lib && rollup -c"
},
"dependencies": {
"@koa/router": "^10.1.1",
"debug": "^4.1.1",
"fs-extra": "^10.1.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.2.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.1.0",
"koa-static": "^5.0.0",
"os": "^0.1.2",
"pm2": "^5.2.0",
"redis": "^4.1.0",
"simple-git": "^3.10.0",
"socket.io": "^4.5.1",
"user-home": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/fs-extra": "^9.0.13",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-json": "^2.0.20",
"@types/koa-logger": "^3.1.2",
"@types/koa-static": "^4.0.2",
"@types/koa__router": "^8.0.11",
"@types/node": "^18.0.0",
"@types/user-home": "^2.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.14.47",
"eslint": "^8.18.0",
"nodemon": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-esbuild": "^4.9.1",
"typescript": "^4.7.4"
}
}