-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1016 Bytes
/
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
33
34
{
"name": "rs-starter-es6",
"version": "1.0.0",
"main": "index.js",
"homepage": "https://jnetto23.github.io/rs-starter-es6/",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.1.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"scripts": {
"dev": "webpack-dev-server --mode=development",
"build": "webpack --mode=production",
"deploy": "yarn build && yarn gh-pages -b deploy -d dist"
},
"dependencies": {
"axios": "^0.19.0",
"gh-pages": "^2.1.1"
}
}