-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "backend",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"webpack:debug": "node --inspect-brk ./node_modules/.bin/webpack --inline --progress",
"build": "cross-env NODE_ENV=prod webpack --config config/webpack.config.prod.js",
"dev": "cross-env NODE_ENV=dev nodemon --exec babel-node --inspect ./src/index.js",
"clean": "rimraf dist",
"ncu": "ncu"
},
"keywords": [],
"author": {
"name": "ruofei",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.7",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.6",
"npm-check-updates": "^10.2.5",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.4.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-combine-routers": "^4.0.2",
"koa-compose": "^4.1.0",
"koa-compress": "^5.0.1",
"koa-helmet": "^6.0.0",
"koa-json": "^2.0.2",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"svg-captcha": "^1.4.0"
}
}