-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.56 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": "@enterprise-cmcs/macpro-ux-lib",
"version": "1.25.1",
"description": "Common UX libraries packaged for easier distribution throughout CMS.",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc && rollup -c",
"prepublishOnly": "npm run build",
"compileCss": "gulp compileSass",
"use-local-build": "rm -rf examples/macpro-example/node_modules/@enterprise-cmcs/macpro-ux-lib/build && rm -rf examples/macpro-example/node_modules/.cache && npm run build && cp -rf build/ examples/macpro-example/node_modules/@enterprise-cmcs/macpro-ux-lib/build/",
"generate-component": "./generate-component.sh"
},
"engines": {
"node": ">=10.0"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-image": "^3.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-a11y": "^7.0.18",
"@storybook/addon-actions": "^7.0.18",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/addon-mdx-gfm": "^7.0.18",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^7.0.18",
"@storybook/react-webpack5": "^7.0.18",
"@storybook/testing-library": "^0.1.0",
"@storybook/theming": "^7.0.18",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^29.1.2",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@uswds/compile": "^1.0.0",
"@uswds/uswds": "^3.4.1",
"babel-loader": "^9.1.3",
"css-loader": "5.2.7",
"gulp": "^4.0.2",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.0.1",
"postcss": "^8.4.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-import-css": "^3.0.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"semantic-release": "^21.0.1",
"storybook": "^7.0.18",
"storybook-addon-sass-postcss": "^0.1.3",
"storybook-dark-mode": "^3.0.0",
"style-loader": "3.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.8.1",
"typescript": "^4.8.4",
"webpack": "^5.80.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/Enterprise-CMCS/macpro-ux-lib"
},
"license": "CC0-1.0",
"author": {
"name": "Center for Medicare & Medicaid Services",
"url": "https://www.cms.gov/"
}
}