-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "webpack-express-ultimate-guide",
"version": "1.0.0",
"description": "The ultimate guide to scaffolding a website project using Webpack 4 and Expressjs",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/webberig/webpack-express-ultimate-guide.git"
},
"keywords": [
"Webpack",
"Express",
"ebook",
"hmr"
],
"author": "Mathieu Maes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webberig/webpack-express-ultimate-guide/issues"
},
"homepage": "https://github.com/webberig/webpack-express-ultimate-guide#readme",
"devDependencies": {
"cogear": "^1.3.3",
"gh-pages": "^2.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cogear",
"build": "node node_modules/cogear/bin/cogear.js build",
"deploy": "gh-pages -d public -b master -r [email protected]:express-webpack-ultimate-guide/express-webpack-ultimate-guide.github.io.git"
},
"dependencies": {
"hamburgers": "^1.1.3"
}
}