-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.4 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
{
"name": "@chance/hooks",
"version": "0.2.1",
"author": "Chance Strickland <hi@chancedigital.io>",
"repository": {
"type": "git",
"url": "https://github.com/chaance/hooks"
},
"module": "dist/hooks.esm.js",
"files": [
"README.md",
"dist",
"src"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"prepare": "tsdx build",
"doc": "typedoc --plugin typedoc-plugin-markdown --out ./docs/ ./src/"
},
"peerDependencies": {
"react": ">=16.8"
},
"prettier": {
"useTabs": true,
"tabWidth": 2
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.ts"
]
},
"devDependencies": {
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/json2mq": "0.2.0",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsdx": "0.14.1",
"tslib": "^2.3.0",
"typedoc": "0.21.2",
"typedoc-plugin-markdown": "^3.10.2",
"typescript": "4.3.5"
},
"dependencies": {
"json2mq": "0.2.0"
}
}