-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "@usace/groundwork",
"private": false,
"version": "3.8.1",
"license": "MIT",
"type": "module",
"main": "./dist/groundwork.umd.cjs",
"module": "./dist/groundwork.es.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/groundwork.es.js",
"require": "./dist/groundwork.umd.cjs"
},
"./dist/*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css"
}
},
"scripts": {
"dev": "vite",
"build": "npm run build-lib && npm run build-docs",
"build-lib": "vite build -m lib",
"build-docs": "vite build",
"pub": "npm run build-lib && npm publish --access=public",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"@headlessui/react": "^2.1.8",
"@tailwindcss/forms": "^0.5.9",
"internal-nav-helper": "^3.1.0",
"react-icons": "^5.0.1",
"redux-bundler": "^28.1.0",
"redux-bundler-hook": "^1.0.3",
"redux-bundler-react": "^1.2.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.33",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.1",
"vite": "^5.0.13",
"vitest": "^2.1.1"
}
}