-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.77 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.77 KB
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
{
"name": "nikorablin.github.io",
"private": true,
"version": "1.3.0",
"packageManager": "pnpm@10.18.3",
"engines": {
"node": ">=24.14.1 <25"
},
"scripts": {
"dev": "next dev",
"dev:open": "open http://localhost:3000",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.0.1",
"@fortawesome/free-brands-svg-icons": "^7.0.1",
"@fortawesome/free-solid-svg-icons": "^7.0.1",
"@fortawesome/react-fontawesome": "^3.0.2",
"classnames": "^2.3.2",
"eslint-config-next": "^16.2.4",
"next": "^16.2.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-markdown": "^10.1.0",
"string-hash": "^1.1.3"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/postcss": "^4.1.5",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/string-hash": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"eslint": "^9.39.1",
"eslint-plugin-unused-imports": "^4.0.1",
"husky": "^8.0.1",
"jsdom": "^26.1.0",
"lint-staged": "^13.0.3",
"postcss": "^8.3.11",
"semantic-release": "^25.0.3",
"tailwindcss": "^4.1.5",
"typescript": "5",
"vitest": "^3.2.4"
}
}