-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.01 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "feed-a11y",
"description": "Headless feed component for React.",
"version": "1.0.2",
"license": "MIT",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"tsc": "tsc -p . --noEmit",
"build": "rimraf dist && rollup -c",
"format": "prettier '**/*.{js,jsx,ts,tsx,json,css,yaml,yml}' --write",
"lint": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:test": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run storybook -- --no-open\" \"wait-on tcp:6006 && test-storybook\"",
"e2e": "npx playwright test",
"test": "cross-env FEED_A11Y_TEST=1 vitest run --silent",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "npm run lint",
"**/*.{js,jsx,ts,tsx,json,css,yaml,yml}": [
"prettier --write"
]
},
"eslintIgnore": [
"/node_modules",
"/dist"
],
"dependencies": {
"@radix-ui/react-primitive": "^1.0.3",
"tabbable": "^6.2.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.0",
"@playwright/test": "^1.41.2",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-storysource": "^7.6.13",
"@storybook/react": "^7.6.13",
"@storybook/react-vite": "^7.6.13",
"@storybook/test-runner": "^0.16.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jsdom": "^21.1.6",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.9.6",
"storybook": "^7.6.13",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2",
"wait-on": "^7.2.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caprolactam/feed-a11y.git"
},
"bugs": {
"url": "https://github.com/caprolactam/feed-a11y/issues"
},
"author": "caprolactam <[email protected]> (https://github.com/caprolactam/)",
"keywords": [
"react",
"headless"
],
"homepage": "https://github.com/caprolactam/feed-a11y#readme"
}