Skip to content

Commit 26b475c

Browse files
committed
feat: update .gitignore and use npm init
1 parent b30048d commit 26b475c

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
package-lock.json
2+
13
# Logs
24
logs
35
*.log

package.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "webpack-tutorials",
3+
"version": "1.0.0",
4+
"description": "Webpack Tutorials for GitHub",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/MikhailMasny/webpack-tutorials.git"
12+
},
13+
"keywords": [
14+
"webpack",
15+
"javascript",
16+
"js"
17+
],
18+
"author": "Mikhail M.",
19+
"license": "ISC",
20+
"bugs": {
21+
"url": "https://github.com/MikhailMasny/webpack-tutorials/issues"
22+
},
23+
"homepage": "https://github.com/MikhailMasny/webpack-tutorials#readme",
24+
"devDependencies": {
25+
"webpack": "^4.42.1",
26+
"webpack-cli": "^3.3.11"
27+
}
28+
}

0 commit comments

Comments
 (0)