-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.62 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
{
"private": true,
"version": "1.0.0",
"name": "portfolio",
"homepage": "https://abhinav-m22.github.io/personal-portfolio/",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build": "react-scripts build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test": "react-scripts test"
},
"dependencies": {
"baseui": "^9.109.0",
"bootstrap": "^4.6.0",
"fs": "0.0.1-security",
"gh-pages": "^3.1.0",
"glamor": "^2.20.40",
"node-fetch": "^2.6.1",
"node-sass": "^6.0.1",
"prettier-package-json": "^2.1.3",
"react": "^18.2.0",
"react-bootstrap": "^1.4.3",
"react-cursor-custom": "^1.2.4",
"react-dom": "^16.8.0",
"react-ga": "^3.3.0",
"react-icons": "^4.2.0",
"react-is": "^17.0.1",
"react-reveal": "^1.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.4",
"styled-components": "^5.2.1",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": "^5.2.7"
},
"devDependencies": {
"@iconify/icons-logos": "^1.1.5",
"@iconify/react": "^1.1.3",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "2.2.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.json": "prettier-package-json --write",
"*.{js,css,md}": "prettier --write"
}
}