-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
30 lines (30 loc) · 865 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
{
"name": "webpack-node",
"version": "1.0.0",
"description": "Use webpack to build node projects",
"main": "server/app.ts",
"repository": "[email protected]:MarxJiao/webpack-node.git",
"author": "MarxJiao <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "rm -rf ./dist && ts-node ./scripts/start-dev.ts",
"build": "rm -rf ./dist && ts-node ./scripts/build.ts"
},
"dependencies": {
"koa": "^2.5.0",
"webpack": "^4.5.0",
"webpack-cli": "^3.3.6"
},
"devDependencies": {
"@types/koa": "^2.0.45",
"@types/node": "^7.0.60",
"@types/webpack": "^4.1.3",
"@types/webpack-env": "^1.13.6",
"@types/webpack-node-externals": "^1.6.3",
"start-server-webpack-plugin": "^2.2.5",
"ts-loader": "^4.2.0",
"ts-node": "^5.0.1",
"typescript": "^2.8.1",
"webpack-node-externals": "^1.7.2"
}
}