-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.1 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.1 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
63
64
65
66
67
68
69
{
"name": "@mitchbne/react-listbox",
"author": "Mitch Smith",
"module": "dist/react-listbox.esm.js",
"version": "0.1.4",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"storybook": "NODE_ENV=development yarn run tailwindcss && start-storybook -p 6006",
"build-storybook": "NODE_ENV=production yarn run tailwindcss:prod && build-storybook",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src test example",
"prepare": "tsdx build",
"tailwindcss": "tailwindcss build -o ./stories/tailwind.css",
"tailwindcss:prod": "tailwindcss build -o ./stories/tailwind.css"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src test example"
}
},
"prettier": {},
"devDependencies": {
"@storybook/addon-actions": "^6.0.16",
"@storybook/addon-essentials": "^6.0.16",
"@storybook/addon-links": "^6.0.16",
"@storybook/react": "^6.0.16",
"@tailwindcss/ui": "^0.5.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^12.1.3",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.7.0",
"eslint-config-react-app": "^5.2.1",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-only-var": "^0.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tailwindcss": "^1.7.6",
"tsdx": "^0.13.2",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
}
}