-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.65 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
{
"version": "5.10.0",
"author": " Pavel Kuzyakin <[email protected]> (kuzyak.in)",
"description": "My personal website",
"homepage": "https://kuzyak.in",
"repository": {
"type": "git",
"url": "https://github.com/iposho/kuzyak.in.git"
},
"keywords": [
"personal-site",
"personal-website",
"personal-blog",
"cv-website",
"nextjs-website"
],
"scripts": {
"dev": "next dev -p 5000",
"build": "next build",
"start": "next start",
"lint": "npm run eslint && npm run stylelint",
"eslint": "next lint",
"stylelint": "npx stylelint \"**/*.+(css|scss)\" --fix",
"prepare": "husky"
},
"dependencies": {
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"luxon": "^3.4.4",
"next": "14.2.22",
"react": "^18",
"react-dom": "^18",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.1.4",
"husky": "^9.0.11",
"next-qrcode": "^2.5.1",
"sass": "^1.74.1",
"stylelint": "^16.3.1",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "^5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}