-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.53 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@macpaw/macpaw-ui",
"version": "4.17.0",
"main": "lib/ui.js",
"scripts": {
"dev": "next -p 1234",
"build": "next build && next export",
"lint": "eslint src",
"test": "jest",
"test:watch": "jest --watch",
"icons:convert": "npx @svgr/cli src/Icons/svg --out-dir src/Icons/jsx --svgo-config .svgorc.json --typescript",
"icons:lint": "npx eslint src/Icons/jsx --fix",
"icons": "yarn icons:convert && yarn run icons:lint",
"lib:js": "tsc --project tsconfig.lib.json",
"lib:css": "sass src/ui.scss lib/ui.css",
"lib": "yarn lib:css && yarn lib:js",
"deploy:s3": "deploy-aws-s3-cloudfront --non-interactive --source=out --bucket=ui.macpaw.com --destination=/ --distribution=E2NQDOZEC6GH2E --acl **:public-read",
"changes:release": "changeset tag",
"changes:add": "changeset add"
},
"engines": {
"node": ">= 20"
},
"dependencies": {
"@floating-ui/react": "^0.26.0",
"date-fns": "^2.29.3",
"lodash.debounce": "^4.0.8",
"lodash.isempty": "^4.4.0",
"lodash.unionwith": "^4.6.0",
"react-day-picker": "^8.8.2",
"react-toastify": "^9.1.3"
},
"peerDependencies": {
"clsx": "^1.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.0"
},
"devDependencies": {
"@babel/runtime": "^7.23.1",
"@changesets/cli": "^2.26.2",
"@macpaw/eslint-config-prettier": "^1.1.0",
"@macpaw/eslint-config-react": "^3.1.0",
"@macpaw/eslint-config-typescript": "^3.1.0",
"@mdx-js/loader": "^2.1.1",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.5.4",
"@svgr/cli": "^6.3.1",
"@swc/jest": "^0.2.26",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.5",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.isempty": "^4.4.7",
"@types/lodash.unionwith": "^4.6.7",
"@types/node": "^16.4.3",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.8",
"@types/react-transition-group": "^4.4.0",
"clsx": "^1.1.1",
"deploy-aws-s3-cloudfront": "^3.7.0",
"eslint": "^8.16.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.5.0",
"next": "^13.5.4",
"prism-react-renderer": "^1.3.3",
"react": "^18.1.0",
"react-dom": "^18.2.0",
"sass": "^1.52.1",
"typescript": "^5.0.4"
},
"files": [
"src",
"lib"
],
"homepage": "https://ui.macpaw.com/",
"repository": "macpaw/macpaw-ui",
"license": "MIT"
}