-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
{
"name": "nextjs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-fix": "npm run lint -- --fix"
},
"dependencies": {
"@emailjs/browser": "^3.4.0",
"@types/next": "^9.0.0",
"bootstrap": "^5.1.3",
"date-fns": "^2.28.0",
"gray-matter": "^4.0.3",
"i18next": "^23.12.2",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.5.2",
"next": "^14.2.5",
"next-i18next": "^15.3.1",
"react": "^18.3.1",
"react-bootstrap": "^2.1.0",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.0",
"react-icons": "^4.3.1",
"react-vertical-timeline-component": "^3.5.2",
"remark": "^14.0.2",
"remark-html": "^15.0.1",
"styled-components": "^6.1.12"
},
"devDependencies": {
"@types/node": "18.7.19",
"@types/react": "^18.0.21",
"eslint": "7.32.0",
"eslint-config-next": "^14.2.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^4.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,css,md,json}": [
"prettier --write"
]
}
}