-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.72 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.72 KB
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
{
"name": "@healthcatalyst/react-cashmere",
"description": "React version of @HealthCatalyst/Fiber.Cashmere",
"version": "0.0.1",
"main": "index.js",
"source": "src/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"index.js",
"README.md"
],
"peerDependencies": {
"@mui/material": "^5.8.6",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"notosans-fontface": "^1.3.0",
"font-awesome": "^4.7.0",
"@healthcatalyst/cashmere": "^13.1.0"
},
"scripts": {
"start": "npm run storybook",
"build": "npm run build:clean && npm run build:dev && npm run build:prod",
"build:clean": "rm -rf ./dist",
"build:dev": "export NODE_ENV=development && webpack --mode=development",
"build:prod": "export NODE_ENV=production && webpack --mode=production --node-env=production",
"build:storybook": "build-storybook -o docs",
"cm": "git-cz",
"postbuild": "npx tsc --skipLibCheck",
"storybook": "start-storybook -p 6006 -s public",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint ./src",
"test:unit": "CI=1 react-scripts test --env=jsdom --passWithNoTests",
"test:watch": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"watch": "webpack --watch"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-syntax-jsx": "7.18.6",
"@date-io/moment": "2.14.0",
"@emotion/react": "11.10.0",
"@emotion/styled": "11.10.0",
"@healthcatalyst/cashmere": "13.1.0",
"@mdx-js/react": "2.1.2",
"@mui/icons-material": "5.8.4",
"@mui/lab": "5.0.0-alpha.88",
"@mui/material": "5.10.1",
"@mui/x-date-pickers": "5.0.0-beta.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@storybook/addon-actions": "6.5.10",
"@storybook/addon-essentials": "6.5.10",
"@storybook/addon-interactions": "6.5.10",
"@storybook/addon-links": "6.5.10",
"@storybook/builder-webpack5": "6.5.10",
"@storybook/manager-webpack5": "6.5.10",
"@storybook/mdx2-csf": "0.0.3",
"@storybook/node-logger": "6.5.10",
"@storybook/preset-create-react-app": "4.1.2",
"@storybook/react": "6.5.10",
"@storybook/testing-library": "0.0.13",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "13.5.0",
"@webpack-cli/generators": "2.5.0",
"babel-plugin-named-exports-order": "0.0.2",
"commitizen": "4.2.5",
"css-loader": "6.7.1",
"cz-conventional-changelog": "3.3.0",
"font-awesome": "4.7.0",
"moment": "2.29.4",
"notosans-fontface": "1.3.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "15.5.0",
"sass": "1.53.0",
"sass-loader": "13.0.2",
"semantic-release": "19.0.3",
"style-loader": "3.3.1",
"ts-loader": "9.3.1",
"typescript": "4.7.4",
"web-vitals": "2.1.4",
"webpack": "5.73.0",
"webpack-cli": "4.10.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}