-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.5 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
{
"name": "react-busser-headless-ui",
"version": "0.0.1",
"description": "A progressive, atomic, highly reusable, flexible and configurable headless UI component library for ReactJS",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "yarn clean & yarn build:esm & yarn build:cjs & yarn build:types",
"build:umd": "rollup -c",
"build:esm": "cross-env BABEL_ENV=esm babel src --extensions .ts,.tsx -d dist/esm --source-maps",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --extensions .ts,.tsx -d dist/cjs --source-maps",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types",
"test": "jest --env=jsdom --passWithNoTests tests/ --runInBand",
"clean:deep": "rimraf node_modules & rimraf package-lock.json & rimraf yarn.lock & rimraf dist",
"clean": "rimraf dist",
"tidy": "prettier --write .",
"docs": "typedoc src/index.ts && touch docs/.nojekyll",
"reset": "yarn clean:deep & yarn install & yarn build"
},
"dependencies": {
"@mantine/hooks": "5.10.5",
"date-fns": "3.6.0",
"history": "5.0.0",
"lodash.pick": "4.0.8",
"react-busser": "1.0.0",
"react-router": "~5.2.1",
"react-router-dom": "~5.3.4",
"react-router-dom-v5-compat": "~6.11.0"
},
"peerDependencies": {
"react-day-picker": "9.5.0",
"react-dropzone": "14.3.5",
"react-hook-form": "7.52.0",
"sonner": "1.7.4"
},
"devDependencies": {
"@babel/cli": "^7.12.0",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.0",
"@babel/preset-react": "^7.12.0",
"@babel/preset-typescript": "^7.12.0",
"@babel/runtime": "^7.12.0",
"@rollup/plugin-typescript": "^12.1.2",
"@svgr/core": "^5.5.0",
"@svgr/plugin-jsx": "^5.5.0",
"@svgr/plugin-prettier": "^5.5.0",
"@svgr/plugin-svgo": "^5.5.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"cross-env": "7.0.3",
"jest": "26.6.3",
"jest-environment-jsdom": "26.6.2",
"prettier": "3.5.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "4.4.1",
"rollup": "^4.31.0",
"title-case": "^3.0.3",
"ts-jest": "26.4.4",
"typedoc": "0.22.18",
"typescript": "4.4.4"
}
}