This repository was archived by the owner on Aug 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.89 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
70
{
"version": "0.1.3",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "react-scripts test",
"lint": "tsdx lint",
"lint:fix": "tsdx lint --fix",
"prepare": "tsdx build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"name": "@developertown/use-speech-recognition",
"author": "Matt Williams",
"module": "dist/use-speech-recognition.esm.js",
"devDependencies": {
"@babel/core": "^7.9.6",
"@material-ui/core": "^4.9.14",
"@storybook/react": "^5.3.18",
"@testing-library/react-hooks": "^3.2.1",
"@types/classnames": "^2.2.10",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"classnames": "^2.2.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-flowtype": "^5.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"husky": "^4.2.5",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.1",
"react-test-renderer": "^16.13.1",
"ts-loader": "^7.0.4",
"tsdx": "^0.13.2",
"typescript": "^3.9.2",
"typescript-fsa": "^3.0.0",
"typescript-fsa-reducers": "^1.2.1"
},
"dependencies": {}
}