-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.1 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
{
"name": "webpack-template",
"version": "1.0.0",
"description": "Webpack template to easily deploy on GitHub Pages",
"main": "index.js",
"repository": "https://github.com/grmnlrt/webpack-template",
"author": "grmnlrt",
"license": "MIT",
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"sass": "^1.54.4",
"webpack": "^4.40.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"animate.css": "^3.7.2",
"bootstrap": "^4.3.1",
"css-loader": "^3.2.0",
"jquery": "^3.5.0",
"popper.js": "^1.15.0",
"sass-loader": "^10.1.1",
"style-loader": "^1.0.0"
},
"scripts": {
"create-gh-pages": "git checkout -b gh-pages; rm .gitignore; touch .gitignore; echo '.DS_Store\npackage-lock.json\nyarn-error.log' >> .gitignore; git add .; git commit -m 'create gh-pages'",
"deploy": "git checkout gh-pages; git merge master; webpack; git add .; git commit -m 'new deploy'; git push origin gh-pages; git checkout master",
"server": "webpack-dev-server"
}
}