-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 1.87 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
{
"private": true,
"name": "Portfolio",
"version": "0.1.0",
"homepage": "http://PriyanshuRj.github.io/Portfolio",
"scripts": {
"build": "react-scripts build",
"deploy": "gh-pages -b gh-pages -d build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test": "react-scripts test"
},
"dependencies": {
"@formspree/react": "^2.4.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"baseui": "^12.2.0",
"bootstrap": "^5.2.3",
"gh-pages": "^5.0.0",
"glamor": "^2.20.40",
"prettier-package-json": "^2.8.0",
"react": "^18.2.0",
"react-awesome-reveal": "^4.2.3",
"react-bootstrap": "^2.7.0",
"react-dom": "^18.2.0",
"react-ga": "^3.3.1",
"react-icons": "^4.7.1",
"react-is": "^18.2.0",
"react-router-dom": "^6.8.0",
"react-scripts": "5.0.1",
"react-tooltip": "^4.4.2",
"react-visibility-sensor": "^5.1.1",
"styled-components": "^5.3.6",
"styletron-engine-atomic": "^1.5.0",
"styletron-react": "^6.1.0",
"typewriter-effect": "^2.19.0",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@iconify/icons-logos": "^1.1.5",
"@iconify/react": "^1.1.4",
"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"
],
"homepage": "http://PriyanshuRj.github.io/Portfolio"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.json": "prettier-package-json --write",
"*.{js,css,md}": "prettier --write"
}
}