-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
64
65
66
{
"name": "community-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node index.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.config.prod.js",
"dev": "cross-env NODE_ENV=development nodemon --exec babel-node --inspect index.js",
"watch": "cross-env NODE_ENV=development webpack --watch --progress --config config/webpack.config.dev.js",
"debug": "nodemon --inspect ./dist/server.bundle.js",
"serve": "npm-run-all -p watch debug",
"prod": "pm2 start ./dist/server.bundle.js",
"pm2": "npm-run-all -p build prod"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@koa/cors": "^3.1.0",
"dayjs": "^1.10.7",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-combine-routers": "^4.0.2",
"koa-compose": "^4.1.0",
"koa-compress": "^5.1.0",
"koa-helmet": "^6.1.0",
"koa-json": "^2.0.2",
"koa-jwt": "^4.0.3",
"koa-log4": "^2.3.2",
"koa-router": "^10.1.1",
"koa-static": "^5.0.0",
"make-dir": "^3.1.0",
"mongoose": "^6.0.14",
"nodemailer": "^6.7.0",
"redis": "^4.0.0",
"svg-captcha": "^1.4.0",
"uuid": "^8.3.2",
"ws": "^8.5.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.15.8",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.5",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
}
}