-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3 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
{
"name": "nde-design-system",
"version": "1.0.18",
"description": "A React component library for NIAID Data Ecosystem design system.",
"repository": {
"type": "git",
"url": "https://github.com/NIAID-Data-Ecosystem/nde-ui"
},
"author": "Candice Czech",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"gen:theme-typings": "chakra-cli tokens ./src/theme/index.ts --out ./src/theme/theme.types.ts",
"build-lib": "rollup -c",
"lint": "eslint --fix 'src/**/*.ts'",
"prettier": "prettier"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@chakra-ui/react": "^2.6.1",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"framer-motion": "^5.5.5",
"webpack": "5"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@babel/types": "^7.21.5",
"@chakra-ui/storybook-addon": "^2.0.0-next.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^8.3.1",
"@storybook/addon-a11y": "^7.0.12",
"@storybook/addon-actions": "^7.0.12",
"@storybook/addon-essentials": "^7.0.12",
"@storybook/addon-links": "^7.0.12",
"@storybook/mdx2-csf": "1.1.0-next.1",
"@storybook/react": "^7.0.12",
"@storybook/react-webpack5": "^7.0.12",
"@types/node": "^16.11.26",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"babel-loader": "^9.1.2",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-storybook": "^0.5.7",
"react": "^18.2.0",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.2.0",
"react-icons": "^4.3.1",
"rollup": "^2.70.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^7.0.12",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"tslib": "^2.3.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@chakra-ui/react": "^2.6.1",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"framer-motion": "^5.5.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"resolutions": {
"json5": "^2.2.2"
}
}