forked from Montana-Code-School/Simple-HTML-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.24 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.24 KB
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
36
{
"name": "html-site",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev:client": "webpack --config webpack.config.client.js --watch",
"dev:server": "webpack --config webpack.config.server.js --watch",
"dev:start": "nodemon dist/server.js --watch dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apriltrull/Simple-HTML-Site.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/apriltrull/Simple-HTML-Site/issues"
},
"homepage": "https://github.com/apriltrull/Simple-HTML-Site#readme",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-latest": "^6.24.1",
"css-loader": "^0.28.7",
"express": "^4.15.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"json-server": "^0.12.0",
"morgan": "^1.8.1",
"webpack": "^3.6.0",
"webpack-combine-loaders": "^2.0.3",
"webpack-dev-server": "^2.9.1"
},
"devDependencies": {},
"description": "This site serves as a simple introduction to HTML, CSS, and you can feel free to use it as a starting point for your simple HTML, CSS, and JS websites. Make the site your introduction, fill it with pictures, facts, a bio, etc."
}