-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
101 lines (101 loc) · 3.17 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
{
"name": "@healthwise-ui/core",
"version": "3.3.0",
"description": "Shared React UI library that implements the Healthwise design language.",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"source": "src/index.js",
"unpkg": "healthwise-ui.min.js",
"keywords": [
"react",
"ui",
"component library",
"healthwise"
],
"author": "Healthwise",
"license": "MIT",
"repository": "healthwise/healthwise-ui",
"bugs": "https://github.com/healthwise/healthwise-ui/issues",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:cjs && npm run build:iife",
"build:cjs": "babel --root-mode upward-optional src -d build",
"build:iife": "rollup --bundleConfigAsCjs -c",
"dopublish": "npm run build && npm publish ./build",
"dopublish:dryrun": "npm run build && npm publish ./build --dry-run",
"format": "npm run prettier -- --write",
"lint": "eslint --ext .js",
"postbuild": "node scripts/copyFiles.js",
"prebuild": "rimraf build",
"precommit": "lint-staged",
"prettier": "prettier --write --ignore-path .gitignore \"**/*.+(js|json)\"",
"reset": "npm run clean && rimraf node_modules && npm install",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build -o docs",
"test": "jest",
"validate": "npm-run-all --parallel format lint build"
},
"lint-staged": {
"*.+(js|css)": "npm run lint"
},
"dependencies": {
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"styled-components": "^6.0.7",
"webpack": "^5.88.2"
},
"peerDependencies": {
"react": "17 - 18",
"react-dom": "17 - 18"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@dump247/storybook-state": "^1.6.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@storybook/addon-actions": "^7.3.2",
"@storybook/addon-controls": "^7.3.2",
"@storybook/addon-docs": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-viewport": "^7.3.2",
"@storybook/addons": "^7.3.2",
"@storybook/blocks": "^7.3.2",
"@storybook/cli": "^7.3.2",
"@storybook/mdx1-csf": "^1.0.0",
"@storybook/react": "^7.3.2",
"@storybook/react-webpack5": "^7.3.2",
"@storybook/theming": "^7.3.2",
"babel-loader": "^9.1.3",
"core-js": "^3.32.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-storybook": "^0.6.13",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"jest": "^29.6.3",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.28.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"storybook": "^7.3.2"
},
"overrides": {
"enhanced-resolve": "5.10.0"
}
}