-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.55 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
{
"name": "@a11ywatch/react-a11ywatch-js",
"version": "0.1.27",
"description": "a11ywatch react components and hooks",
"main": "./dist/index.js",
"types": "types/index.d.ts",
"author": "jeffmendez",
"license": "MIT",
"homepage": "https://github.com/a11ywatch/react-a11ywatch-js#readme",
"scripts": {
"test": "jest",
"build": "tsc && NODE_ENV=production npx tailwindcss -i ./src/css/tailwind.css -o ./dist/css/tailwind.css && cp ./dist/css/tailwind.css ./public/tailwind.css",
"postbuild": "npm run prepdist",
"storybook": "npm run build && NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006 --ci",
"build-storybook": "npm run build && build-storybook",
"prepdist": "node ./config/prep-dist.js",
"predeploy": "npm run build",
"deploy": "cp ./README.md ./dist && cd dist && npm publish --access public",
"deploy-storybook": "storybook-to-ghpages",
"fix": "prettier --write '**/*.{js,jsx,ts,tsx,md}'"
},
"devDependencies": {
"@storybook/addon-a11y": "6.5.15",
"@storybook/addon-actions": "6.5.15",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-links": "6.5.15",
"@storybook/addons": "6.5.15",
"@storybook/preset-typescript": "3.0.0",
"@storybook/react": "6.5.15",
"@storybook/storybook-deployer": "2.8.7",
"@stripe/react-stripe-js": "^1.16.1",
"@stripe/stripe-js": "^1.46.0",
"@types/jest": "^25.2.1",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"jest": "^29.6.2",
"prettier": "^2.0.2",
"react": "^17.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^17.0.2",
"recast": "^0.20.5",
"regenerator-runtime": "^0.13.5",
"tailwindcss": "3.2.4",
"ts-jest": "^29.1.1",
"ts-loader": "^6.2.2",
"typescript": "^5.1.6",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a11ywatch/react-a11ywatch-js.git"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
},
"verbose": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/tailwind/"
],
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"buffer": "^6.0.3",
"clsx": "^1.2.1",
"react-icons": "^4.7.1"
}
}