-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·76 lines (76 loc) · 2.48 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
67
68
69
70
71
72
73
74
75
76
{
"name": "portfolio",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve --open --config webpack.dev.js",
"dev": "npm run start",
"build": "webpack --config webpack.prod.js",
"lint": "eslint ./src",
"lint.functions": "eslint ./functions",
"prettier.check": "npx prettier --check .",
"prettier": "npx prettier --write .",
"deploy.all": "npm run build && firebase deploy",
"deploy": "npm run build && firebase deploy --only hosting",
"blog": "node ./scripts/createBlog.js"
},
"author": "Ethan Bonsignori",
"license": "ISC",
"homepage": "https://github.com/EthanBonsignori/portfolio#readme",
"dependencies": {
"@babel/runtime": "^7.13.9",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"dotenv-webpack": "^8.0.1",
"firebase": "^10.8.1",
"highlight.js": "^10.6.0",
"history": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"markdown-to-jsx": "^7.1.1",
"react": "^16.13.1",
"react-alice-carousel": "^2.4.0",
"react-dom": "^16.13.1",
"react-dom-confetti": "^0.2.0",
"react-modal": "^3.16.1",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0",
"react-spinners": "^0.13.8",
"styled-components": "^5.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.10.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-minify": "^0.5.1",
"css-loader": "^5.0.2",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.1.0",
"html-loader": "1.3.2",
"markdown-loader": "^6.0.0",
"node-fetch": ">=2.6.1",
"node-forge": ">=0.10.0",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"url-loader": "^4.1.0",
"webpack-dev-server": "^4.5.0"
}
}