-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
32 lines (32 loc) · 1.03 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": "commit-coffee",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"grommet": "^2.7.0",
"grommet-icons": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mapbox-gl": "^0.54.0",
"normalize.css": "^8.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"style-loader": "^0.23.1",
"styled-components": "^4.2.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"scripts": {
"build": "webpack --mode production",
"deploy": "npm run build && git branch -D gh-pages; git checkout -b gh-pages; cp -r .git dist; cd dist; git add -A . ; git commit -a -m 'gh-pages update'; git push origin gh-pages --force; rm .git -rf; cd ..; git checkout master"
}
}