-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "koa",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/index.js",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@koa/cors": "^3.1.0",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-combine-routers": "^4.0.2",
"koa-compose": "^4.1.0",
"koa-compress": "^5.0.1",
"koa-helmet": "^6.1.0",
"koa-json": "^2.0.2",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "*",
"cross-env": "^7.0.3",
"nodemon": "^2.0.7",
"rimraf": "^2.7.1",
"terser-webpack-plugin": "^1.4.5",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
}
}