-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 908 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
33
34
{
"name": "express-webpack-example",
"version": "0.0.1",
"description": "Repo showing how to bundle an express.js application to a bundle with webpack",
"main": "app.js",
"scripts": {
"start": "node dist/app.js",
"build": "webpack --config build/webpack.prod.conf.js",
"dev": "webpack --config build/webpack.dev.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CorpGlory/express-webpack-example.git"
},
"keywords": [
"node.js",
"webpack",
"expressjs",
"javascript",
"cicd"
],
"author": "CorpGlory Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/CorpGlory/express-webpack-example/issues"
},
"homepage": "https://github.com/CorpGlory/express-webpack-example#readme",
"devDependencies": {
"ejs": "^2.6.2",
"express": "^4.17.1",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
}
}