-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
113 lines (113 loc) · 3.4 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
{
"name": "cfpb-design-system",
"private": true,
"description": "CFPB's UI framework",
"keywords": [
"design-system"
],
"bugs": {
"url": "https://github.com/cfpb/design-system/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cfpb/design-system.git"
},
"license": "SEE LICENSE IN TERMS.md",
"author": {
"name": "Consumer Financial Protection Bureau",
"email": "[email protected]",
"url": "https://cfpb.github.io/"
},
"workspaces": [
"packages/*"
],
"scripts": {
"a11y": "lhci autorun",
"build": "node ./esbuild/packages/build.js && node ./esbuild/docs/build.js",
"build-decap": "yarn install && yarn after-install && yarn build && bundle exec jekyll build",
"copy-assets": "./scripts/fonts.sh && cp -r packages/cfpb-design-system/src/components/cfpb-icons/icons docs/_includes/",
"after-install": "yarn copy-assets && bundle install",
"lint": "scripts/lint.sh",
"process-icon-svgs": "svgo -f packages/cfpb-design-system/src/components/cfpb-icons/icons --config=svgo.config.js",
"release": "./scripts/release.sh",
"serve-html": "http-server docs/_site",
"serve-jekyll": "bundle exec jekyll serve --watch --profile --host=localhost --port=4000",
"serve-decap": "npx decap-server",
"start": "yarn build && concurrently --kill-others \"yarn serve-decap\" \"yarn serve-jekyll\" \"yarn build watch\"",
"jest": "yarn node --experimental-vm-modules $(yarn bin jest)",
"cy": "./scripts/cypress.sh"
},
"browserslist": "> 0.2% in @cfpb/browserslist-config stats",
"dependencies": {
"@types/react": "18.3.12",
"anchor-js": "5.0.0",
"decap-cms-app": "3.4.0",
"html-entities": "2.5.2",
"lunr": "2.3.9",
"marked": "12.0.2",
"react": "18.3.1",
"react-is": "18.3.1",
"react-liquid": "2.0.1",
"slugify": "1.6.6"
},
"devDependencies": {
"@cfpb/browserslist-config": "0.0.3",
"@csstools/postcss-sass": "5.1.1",
"@lhci/cli": "0.14.0",
"autoprefixer": "10.4.20",
"concurrently": "9.1.0",
"cypress": "13.15.2",
"esbuild": "0.24.0",
"esbuild-plugin-liquid": "0.2.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.5.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"git-cliff": "2.6.1",
"glob": "11.0.0",
"globals": "15.12.0",
"http-server": "14.1.1",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.4.49",
"postcss-replace": "2.0.1",
"prettier": "3.3.3",
"prop-types": "15.8.1",
"release-it": "17.10.0",
"sass": "1.80.7",
"stylelint": "16.10.0",
"stylelint-config-standard-scss": "13.1.0",
"svgo": "3.3.0"
},
"prettier": {
"singleQuote": true
},
"release-it": {
"git": {
"requireBranch": "main",
"commitsPath": "packages/cfpb-design-system",
"requireCommits": true
},
"hooks": {
"after:bump": "./scripts/changelog.sh"
},
"npm": {
"publish": false,
"versionArgs": [
"--workspace=packages/cfpb-design-system/",
"--workspaces-update=false",
"--workspaces=true"
]
},
"github": {
"release": true,
"releaseNotes": "./scripts/changelog.sh stdout"
}
},
"type": "module",
"packageManager": "[email protected]"
}