This repository has been archived by the owner on Mar 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
114 lines (114 loc) · 3.61 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
{
"name": "decanter-react",
"version": "1.1.1",
"description": "Decanter React Library",
"source": "src/index.js",
"main": "dist/decanter-react.js",
"module": "dist/decanter-react.module.js",
"esmodule": "./dist/decanter-react.modern.js",
"umd:main": "dist/decanter-react.umd.js",
"exports": {
".": {
"browser": "./dist/decanter-react.modern.js",
"import": "./dist/decanter-react.module.js",
"require": "./dist/decanter-react.js",
"umd": "./dist/decanter-react.umd.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"package": "microbundle-crl -o dist/ --no-compress --jsx React.createElement --jsxFragment React.Fragment --sourcemap false --globals prop-types=PropTypes,cnbuilder=dcnb --external prop-types,cnbuilder",
"build": "build-storybook",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev": "start-storybook -p 6006",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SU-SWS/decanter-react.git"
},
"keywords": [
"Decanter",
"Stanford",
"React",
"TailWindCSS"
],
"author": "Stanford Web Services",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/SU-SWS/decanter-react/issues"
},
"homepage": "https://github.com/SU-SWS/decanter-react#readme",
"dependencies": {
"@heroicons/react": "^1.0.4",
"cnbuilder": "^2.6.0",
"decanter": "^7.0.0-beta.1",
"glob": "^7.1.7",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.14.0 || ^17.0.0",
"react-dom": "^16.14.0 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/eslint-parser": "^7.13.4",
"@babel/plugin-transform-react-jsx": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"@fullhuman/postcss-purgecss": "^4.0.3",
"@mui/core": "^5.0.0-alpha.49",
"@storybook/addon-a11y": "^6.1.19",
"@storybook/addon-actions": "^6.1.19",
"@storybook/addon-essentials": "^6.1.19",
"@storybook/addon-links": "^6.1.15",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-viewport": "^6.1.19",
"@storybook/node-logger": "^6.1.19",
"@storybook/react": "^6.1.19",
"@tailwindcss/aspect-ratio": "^0.3.0",
"@tailwindcss/forms": "^0.3.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@whitespace/storybook-addon-html": "^5.0.0",
"auto-changelog": "^2.2.1",
"autoprefixer": "^10.3.3",
"babel-jest": "^27.0.2",
"cross-env": "^7.0.2",
"dompurify": "^2.2.6",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.4",
"microbundle-crl": "^0.13.11",
"postcss": "^8.3.6",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"storybook-addon-designs": "^6.0.0",
"storybook-addon-pseudo-states": "^1.0.0-rc.3",
"storybook-dark-mode": "^1.0.4",
"tailwindcss": "^2.2.15",
"tailwindcss-children": "^2.1.0",
"tailwindcss-interaction-variants": "^5.0.0"
}
}