-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "@tacc/core-components",
"version": "0.0.4",
"license": "MIT",
"author": "TACC ACI WMA <wma-portals@tacc.utexas.edu>",
"contributors": [
"TACC COA CMD <coa-cmd@tacc.utexas.edu>"
],
"description": "React component library for TACC applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/TACC/Core-Components",
"scripts": {
"start": "storybook dev --port 9000",
"build": "vite build --outDir dist",
"// build": "tsc -b && vite build",
"lint": "eslint .",
"test": "vitest"
},
"dependencies": {
"uuid": "^8 || ^9"
},
"peerDependencies": {
"formik": "^2.2.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-resize-detector": "^7.1.2",
"react-router-dom": "^6.11.2",
"react-step-wizard": "^5.3.11",
"react-table": "^7.8.0",
"reactstrap": "^9.1.5"
},
"devDependencies": {
"@tacc/core-styles": "^2.25.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react-swc": "^3.5.0",
"jsdom": "^22.1.0",
"vite": "^5.0.11",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-lib-inject-css": "^2.1.1",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "0.34.6"
},
"sideEffects": [
"libs/core-componets/**/*.css"
],
"optionalDependencies": {
"@storybook/addon-essentials": "^7.6.19",
"@storybook/core-server": "^7.6.19",
"@storybook/react-vite": "^7.6.19",
"storybook": "^7.6.19"
}
}