-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 4.15 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"author": "PDS",
"bugs": {
"url": "https://github.com/NASA-PDS/wds-react/issues"
},
"description": "Planetary Data System (PDS) React component library",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@storybook/addon-controls": "^7.1.0",
"@storybook/addon-essentials": "^7.1.0",
"@storybook/addon-interactions": "^7.1.0",
"@storybook/addon-links": "^7.1.0",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.1.0",
"@storybook/node-logger": "^7.1.1",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^7.1.0",
"@storybook/react-webpack5": "^7.1.1",
"@storybook/testing-library": "^0.2.0",
"@svgr/cli": "^8.1.0",
"@types/jest": "^29.5.3",
"@types/minimist": "^1.2.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"babel-jest": "^29.6.2",
"babel-loader": "^9.1.3",
"babel-plugin-react-require": "^4.0.1",
"classnames": "^2.3.2",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.26.1",
"react-test-renderer": "^18.2.0",
"rollup": "^3.26.3",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-scss": "^4.0.0",
"sass": "^1.64.0",
"sass-loader": "^13.3.2",
"storybook": "^7.1.0",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.1"
},
"files": [
"dist",
"dist/**/*.css"
],
"homepage": "https://github.com/NASA-PDS/wds-react#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"PDS",
"React",
"web-design-system",
"component-library"
],
"license": "Apache-2.0",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./dist/": {
"import": "./dist/",
"require": "./dist/"
}
},
"name": "@nasapds/wds-react",
"repository": {
"type": "git",
"url": "git+https://github.com/NASA-PDS/wds-react.git"
},
"scripts": {
"build-lib": "rollup -c",
"build-lib-watch": "rollup -c -w",
"build-storybook": "storybook build",
"compile": "tsc -p .",
"lint": "eslint ./src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"build-icons": "svgr --jsx-runtime automatic -d ./src/components/Icons/ node_modules/@nasapds/wds/icons/",
"storybook": "storybook dev -p 6006",
"test": "jest",
"watch": "jest --watchAll"
},
"type": "module",
"typescript": {
"definition": "dist/esm/index.d.ts"
},
"types": "./dist/esm/index.d.ts",
"version": "0.0.2",
"dependencies": {
"@nasapds/wds": "^0.0.1"
}
}