This repository has been archived by the owner on Apr 21, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
87 lines (87 loc) · 2.29 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
81
82
83
84
85
86
87
{
"name": "accessibility-mentor",
"version": "0.1.0",
"private": false,
"homepage": "",
"engines": {
"node": "18.x"
},
"description": "AccessibilityMentor helps everyone (UX Designers, Developers, testers, content creators and more), get into web accessibility in an easier way. Contributors gain hands-on experience working in an agile team which helps them get ready for applying for jobs.",
"repository": {
"type": "git",
"url": "git+https://github.com/YurisCodingClub/accessibility-mentor.git"
},
"keywords": [
"javascript",
"socials",
"YurisCodingClub",
"reactjs",
"react",
"nextjs",
"accessibility"
],
"author": "Julia Undeutsch",
"license": "MIT",
"bugs": {
"url": "https://github.com/YurisCodingClub/accessibility-mentor/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "next test",
"test:a11y": "npx playwright test",
"lint": "next lint",
"prepare": "husky install",
"format": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@axe-core/playwright": "^4.7.3",
"next": "13.5.3",
"playwright": "^1.38.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.11.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@types/node": "^20.8.3",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.6",
"@storybook/nextjs": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/testing-library": "^0.2.2",
"eslint": "8.50.0",
"eslint-config-next": "13.5.3",
"eslint-plugin-storybook": "^0.6.14",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "3.0.3",
"storybook": "^7.4.6"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint-staged"
}
}
}