generated from metachris/typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "@monoid-dev/use-search",
"version": "0.1.0",
"private": false,
"description": "React hook with sanitized and parsed search string. ",
"author": "Chenyu Wang <[email protected]>",
"repository": "https://github.com/MonoidDev/use-search",
"license": "MIT",
"keywords": [
"typescript",
"io-ts",
"url",
"type",
"browser",
"react"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"scripts": {
"cli": "ts-node src/cli.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/main.ts",
"build:cjs": "tsc --module commonjs --target es6 --outDir dist/cjs",
"build:esm": "tsc --module es2015 --target es6 --outDir dist/esm",
"build-all": "yarn clean && yarn build:cjs && yarn build:esm",
"esbuild-browser:watch": "esbuild src/browser.tsx --bundle --watch --outfile=dist/esbuild/browser.js",
"prepare": "yarn lint && yarn build-all"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^15.0.1",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"esbuild": "^0.11.11",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "^17.0.2"
},
"dependencies": {
"fp-ts": "^2.11.2",
"io-ts": "^2.2.16",
"query-string": "^7.0.1"
},
"publishConfig": {
"access": "public"
}
}