-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.38 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.38 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-tracktor",
"version": "2.0.1",
"author": "Max Karadeniz <max@karadeniz.io> (http://karadeniz.io/)",
"description": "A React render prop to gradually build tracking data down the render tree.",
"keywords": [
"react",
"react-hook",
"tracking",
"typescript"
],
"homepage": "https://github.com/mkaradeniz/react-tracktor#readme",
"repository": {
"type": "git",
"url": "https://github.com/mkaradeniz/react-tracktor.git"
},
"bugs": {
"url": "https://github.com/mkaradeniz/react-tracktor/issues"
},
"license": "MIT",
"main": "dist/index.js",
"umd:main": "dist/react-tracktor.umd.production.js",
"module": "dist/react-tracktor.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn build:clean && yarn build:dist",
"build:clean": "rimraf dist",
"build:dist": "tsdx build",
"clean": "rimraf node_modules",
"docs:build": "docz build",
"docs:dev": "docz dev",
"format": "prettier \"./src/**/*.{ts,tsx}\" \"./docs/**/*.{mdx}\" --config ./prettier.config.js --write",
"lint": "eslint --ext .ts --ext .tsx \"./src/\" --fix",
"start": "tsdx watch",
"test": "tsdx test --env=jsdom",
"test:types": "tsc -p tsconfig.json --noEmit && :",
"test:watch": "tsdx test --env=jsdom --watch"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"dependencies": {
"deepmerge": "3.2.0",
"react-intersection-observer": "8.23.0"
},
"devDependencies": {
"@mkaradeniz/eslint-config-typescript-react": "2.0.0",
"@mkaradeniz/prettier-config": "2.0.0",
"@types/jest": "24.0.12",
"@types/react": "16.8.16",
"@types/react-dom": "16.8.4",
"@typescript-eslint/eslint-plugin": "1.6.0",
"@typescript-eslint/parser": "1.6.0",
"docz": "1.1.0",
"docz-theme-default": "1.1.0",
"eslint": "5.16.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.0",
"eslint-plugin-react-hooks": "1.6.0",
"husky": "2.2.0",
"lint-staged": "8.2.0",
"prettier": "1.17.0",
"pretty-quick": "1.10.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-testing-library": "7.0.0",
"rimraf": "2.6.3",
"tsdx": "0.6.0",
"typescript": "3.4.5"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}