-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "iam-hitesh.github.io",
"version": "1.0.0",
"description": "Personal Website",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --hot --mode development",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"build": "webpack --mode production --config webpack.config.prod.js",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "npm run build && npm run deploy",
"analyze": "source-map-explorer examples/dist/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iam-hitesh/iam-hitesh.github.io.git"
},
"keywords": [
"personal",
"portfolio",
"website",
"Hitesh",
"yadav",
"hitesh",
"yadav"
],
"author": "iam-hitesh",
"license": "ISC",
"bugs": {
"url": "https://github.com/iam-hitesh/iam-hitesh.github.io/issues"
},
"homepage": "https://github.com/iam-hitesh/iam-hitesh.github.io#readme",
"dependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-arrow-functions": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"@babel/preset-react": "^7.10.1",
"axios": "^0.24.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"compression-webpack-plugin": "^4.0.0",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"style-loader": "^1.2.1",
"styled-components": "^5.1.1",
"webpack": "^4.43.0",
"webpack-dev-server": "^4.6.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"gh-pages": "^3.0.0",
"react-hot-loader": "^4.12.21",
"uglifyjs-webpack-plugin": "^1.1.2",
"webpack-cli": "^4.9.1"
}
}