-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
68 lines (68 loc) · 2.33 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
66
67
68
{
"name": "@thumbtack/thumbprint-react",
"description": "React components for building UIs with Thumbprint",
"version": "14.18.2",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"buildTypeDecls": "tsc --project ./tsconfig.types.json",
"buildJsFiles": "rollup -c=./rollup.config.js",
"clear": "rm -rf dist",
"build": "yarn clear && yarn buildJsFiles && yarn buildTypeDecls && yarn buildTypeDecls --outDir ./dist/cjs",
"prepublishOnly": "../../scripts/should-build-package.js -- yarn build"
},
"peerDependencies": {
"prop-types": ">= 15.5.7 < 16.0.0-0",
"react": ">= 16.3.2 < 18.0.0-0",
"react-dom": ">= 16.3.3 < 18.0.0-0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thumbtack/thumbprint.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"author": "Daniel O'Connor <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/thumbtack/thumbprint/issues"
},
"homepage": "https://github.com/thumbtack/thumbprint/blob/master/packages/thumbprint-react/",
"dependencies": {
"@thumbtack/thumbprint-scss": "^4.0.3",
"@thumbtack/thumbprint-tokens": "^12.1.1",
"classnames": "^2.2.6",
"date-fns": "^2.30.0",
"focus-trap": "4.0.2",
"focus-trap-react": "^6.0.0",
"intersection-observer": "^0.6.0",
"lodash": "^4.17.21",
"no-scroll": "^2.1.0",
"object-fit-images": "^3.2.4",
"react-day-picker": "8.8.0",
"react-displace": "^2.3.0",
"react-onclickoutside": "^6.4.0",
"react-popper": "^1.0.0",
"react-swipeable": "^4.3.0",
"rotate-array": "^1.1.0",
"warning": "^4.0.2"
},
"devDependencies": {
"@types/no-scroll": "^2.1.0",
"@types/react-swipeable": "^4.3.0",
"rollup": "^1.11.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-cpy": "^1.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.31.2",
"tslib": "^1.10.0",
"typescript": "^3.9.6"
}
}