-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 885 Bytes
/
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
{
"name": "koa-study",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/benyueer/koa-study.git",
"author": "benyueer <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack --config ./prod.config.js",
"webpack:debug": "node --inspect-brk ./node_modules/.bin/webpack --config prod.config.js --progress"
},
"dependencies": {
"koa": "^2.13.4",
"typescript": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@types/koa": "^2.13.4",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.2.5",
"ts-loader": "8",
"webpack": "4",
"webpack-cli": "3",
"webpack-node-externals": "^3.0.0"
}
}