-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.91 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
77
78
{
"name": "casper-portfolio",
"version": "0.4.0",
"private": true,
"author": {
"email": "[email protected]",
"name": "Remilekun Salami",
"url": "https://remilekunsalami.com"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint '**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint --fix '**/*.{ts,tsx,js,jsx}'"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@next/third-parties": "^14.2.3",
"@theme-ui/components": "^0.16.2",
"@vercel/analytics": "^1.0.1",
"@vercel/speed-insights": "^1.0.12",
"axios": "^0.27.2",
"bezier-easing": "^2.1.0",
"date-fns": "^2.29.2",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-reveal": "^1.2.2",
"react-spring": "^8.0.27",
"react-use": "^17.5.0",
"vanilla-lazyload": "^12.4.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.2.5",
"@svgr/cli": "^5.1.0",
"@svgr/webpack": "^6.3.1",
"@types/node": "^20.1.0",
"@types/react": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-eslint": "^10.0.3",
"eslint": "^8.40.0",
"eslint-config-next": "^13.4.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^4.2.2",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"prettierrc": "^0.0.0-5",
"typescript": "^5.0.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,scss,css}": [
"prettier --write",
"git add"
]
}
}