-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "jcgonzaga01.github.io",
"version": "1.0.0",
"description": "My Personal Website",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server",
"build": "rimraf ./build && NODE_ENV=production && webpack -p",
"deploy": "gh-pages -d build"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-dynamic-import"
]
},
"dependencies": {
"@types/lodash": "^4.14.163",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"express": "^4.17.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"typescript": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"file-loader": "^6.1.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.0",
"image-webpack-loader": "^7.0.1",
"node-sass": "^4.14.1",
"rimraf": "^3.0.2",
"sass-loader": "^10.0.2",
"style-loader": "^1.3.0",
"ts-loader": "^8.0.4",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0"
}
}