forked from Enterprise-CMCS/macpro-ux-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.92 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": "@cmsgov/macpro-ux-lib",
"version": "1.0.3",
"description": "Common UX libraries packaged for easier distribution throughout CMS.",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "gulp compile && build-storybook",
"test": "jest",
"coverage": "jest --coverage",
"build": "gulp compile && tsc && rollup -c",
"prepublishOnly": "npm run build",
"compileCss": "gulp compileSass"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"engines": {
"node": ">=10.0"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack4": "^6.5.9",
"@storybook/manager-webpack4": "^6.5.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.3",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@uswds/compile": "^1.0.0-beta.3",
"@uswds/uswds": "^3.0.2",
"babel-loader": "^8.2.5",
"css-loader": "5.2.7",
"gulp": "^4.0.2",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.75.7",
"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.32.1",
"sass": "^1.53.0",
"sass-loader": "10.1.1",
"semantic-release": "^19.0.3",
"storybook-addon-sass-postcss": "^0.1.3",
"style-loader": "2.0.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"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/cmsgov/macpro-ux-lib"
},
"license": "CC0-1.0",
"author": {
"name": "Center for Medicare & Medicaid Services",
"url": "https://www.cms.gov/"
}
}