-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.98 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
79
80
{
"name": "accessibility-first",
"version": "1.3",
"private": true,
"homepage": "https://accessibilityfirst.at",
"description": "Accessibility First is a collection of insights, learnings, and experiences from industry professionals to spread awareness and help you eradicate invisible barriers.",
"repository": {
"type": "git",
"url": "git+https://github.com/YuriDevAT/accessibility-first.git"
},
"keywords": [
"javascript",
"semantic-html",
"socials",
"accessibilityfirst",
"reactjs",
"react",
"nextjs",
"accessibility",
"blog",
"アクセシビリティ",
"ux research",
"ux design"
],
"author": "Julia Undeutsch",
"bugs": {
"url": "https://github.com/YuriDevAT/accessibility-first#readme"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@types/react-icons": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"classnames": "^2.3.2",
"date-fns": "^2.28.0",
"force": "^0.0.3",
"gray-matter": "^4.0.3",
"next": "^14.2.12",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.0.1",
"remark": "^14.0.2",
"remark-html": "^15.0.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "14.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.4",
"next-translate-plugin": "^2.6.2",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3",
"typescript": "^5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}