-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.66 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@nathanstitt/sundry",
"private": false,
"type": "module",
"sideEffects": false,
"version": "1.8.2",
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"exports": {
".": {
"types": "./dist/all.d.ts",
"import": "./dist/all.js",
"require": "./dist/all.cjs"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js",
"require": "./dist/*.cjs"
}
},
"files": [
"src",
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"typings": "dist/index.d.ts",
"scripts": {
"demo": "vite --host --open",
"pf": "run-p typecheck lint",
"lint": "eslint src",
"typecheck": "tsc --noemit",
"build": "vite build",
"test": "vitest run",
"update-snapshots": "vitest run -u",
"ci": "vitest run",
"lint:scripts": "eslint . --ext .ts",
"lint:styles": "stylelint ./**/*.{css,scss}",
"format:scripts": "prettier . --write",
"prepublishOnly": "run-p build",
"format:styles": "stylelint ./**/*.{css,scss} --fix",
"format": "run-p format:scripts format:styles"
},
"peerDependencies": {
"@emotion/css": ">=11.11",
"@emotion/react": ">=11.11",
"@emotion/styled": ">=11.11",
"@restart/ui": "^1.6",
"boxible": ">=2.0",
"dayjs": "*",
"react": ">=18.2",
"react-dom": ">=18.2"
},
"devDependencies": {
"@emotion/css": "^11.5",
"@emotion/styled": "^11.5",
"@react-types/shared": "^3.22.0",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/bootstrap": "^5.2.10",
"@types/jsdom": "^21.1.6",
"@types/loadable__component": "^5.13.8",
"@types/node": "^20.11.0",
"@types/react": ">=18.2",
"@types/react-dom": ">=18.2",
"@types/spark-md5": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"babel-preset-env": "^1.7.0",
"bootstrap": "^5.3.2",
"boxible": "^1.7.5",
"dayjs": "^1.11",
"dts-bundle-generator": "^9.2.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"react": "^18.1.0",
"react-dom": "^18.2.0",
"react-select-event": "^5.5.1",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"stylelint": "^16.1.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-sass-guidelines": "^11.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-external": "^4.2.1",
"vitest": "^1.1.3"
},
"dependencies": {
"@hookform/resolvers": "^3.3",
"@iconify-icons/bi": "^1.2.19",
"@iconify/icons-bi": "^1.2",
"@iconify/react": "^4.1",
"@loadable/component": "^5.16.3",
"@popperjs/core": "^2.11",
"@react-aria/ssr": "^3.9.1",
"@restart/ui": "^1.6",
"flatpickr": "^4.6",
"graphql": "^16.8",
"react-hook-form": "^7.49",
"react-popper": "^2.3",
"react-select": "^5.8.0",
"spark-md5": "^3.0",
"yup": "^1.3"
}
}