-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
25 lines (25 loc) · 1.01 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
{
"name": "debugging-express-with-simplehtmlwebpack",
"version": "1.0.0",
"description": "This project is using an Express server with simple html webpack client front end.",
"repository": {
"type": "git",
"url": "git+https://github.com/branflake2267/debugging-express-with-simplehtmlwebpack.git"
},
"author": "Brandon Donnelson",
"license": "GPL V3",
"bugs": {
"url": "https://github.com/branflake2267/debugging-express-with-simplehtmlwebpack/issues"
},
"homepage": "https://github.com/branflake2267/debugging-express-with-simplehtmlwebpack#readme",
"scripts": {
"install": "cd client && npm install && cd ../server && npm install",
"clean": "rm -rf ./dist && mkdir ./dist",
"build": "npm run clean && npm run buildClient && npm run buildDist",
"buildClient": "cd client && npm run build && cd ../",
"buildDist": "cp -R ./server/* dist && cp -R ./client/dist/* ./dist/html",
"serverFromDist": "node ./dist/express.js"
},
"dependencies": {},
"devDependencies": {}
}