This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.83 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": "govuk-react-jsx",
"version": "7.1.0",
"description": "React component ports of govuk-frontend nunjucks macros. Directly consuming govuk-frontend CSS & JS.",
"main": "src/govuk/index.js",
"scripts": {
"test": "jest --verbose",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"start": "npm run storybook",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deploy-demo": "npm run build-storybook && gh-pages -d storybook-static",
"build": "./scripts/build.sh",
"publish-local": "./scripts/publish-local.sh",
"publish-npm": "./scripts/publish-npm.sh"
},
"jest": {
"testEnvironment": "jest-environment-jsdom-fourteen",
"moduleNameMapper": {
"govuk/assets/images/govuk-logotype-crown.png": "<rootDir>/tests/mocks/image.js",
"govuk/assets/images/favicon.ico": "<rootDir>/tests/mocks/image.js",
"govuk/assets/images/govuk-mask-icon.svg": "<rootDir>/tests/mocks/image.js",
"govuk/assets/images/govuk-apple-touch-icon-180x180": "<rootDir>/tests/mocks/image.js",
"govuk/assets/images/govuk-apple-touch-icon-167x167": "<rootDir>/tests/mocks/image.js",
"govuk/assets/images/govuk-apple-touch-icon-152x152": "<rootDir>/tests/mocks/image.js",
"govuk/assets/images/govuk-apple-touch-icon": "<rootDir>/tests/mocks/image.js",
"govuk/assets/images/govuk-opengraph-image": "<rootDir>/tests/mocks/image.js"
},
"setupFiles": [
"./tests/utils/jest.overrides.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/surevine/govuk-react-jsx.git"
},
"keywords": [
"govuk",
"react",
"jsx",
"components",
"govuk-frontend"
],
"author": "Andy Mantell <andy.mantell@surevine.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/surevine/govuk-react-jsx/issues"
},
"homepage": "https://github.com/surevine/govuk-react-jsx#readme",
"dependencies": {
"govuk-frontend": "4.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/node": "7.12.16",
"@babel/plugin-proposal-optional-chaining": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/runtime": "^7.12.13",
"@markedjs/html-differ": "^3.0.4",
"@starptech/prettyhtml": "^0.10.0",
"@storybook/addon-actions": "^6.1.17",
"@storybook/addons": "^6.1.17",
"@storybook/react": "^6.1.17",
"@testing-library/react": "^13.2.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-file-loader": "^2.0.0",
"body-parser": "^1.19.0",
"cli-progress": "^3.9.0",
"copy": "^0.3.2",
"css-loader": "^5.0.2",
"deep-iterator": "^1.1.0",
"ent": "^2.2.0",
"eslint": "7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-wesbos": "1.0.1",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"glob": "^7.1.6",
"got": "^11.8.1",
"jest": "^26.6.3",
"jest-environment-jsdom-fourteen": "^1.0.1",
"js-yaml": "^4.0.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"nunjucks": "^3.2.2",
"prettier": "^2.2.1",
"react-element-to-jsx-string": "14.3.2",
"react-html-parser": "^2.0.2",
"regenerator-runtime": "^0.13.7",
"sass": "^1.32.7",
"sass-loader": "^10.1.1",
"semver": "^7.3.4",
"storybook-addon-jsx": "^7.3.6",
"style-loader": "^2.0.0",
"webpack": "^4.46.0",
"webpack-cli": "4.5.0"
}
}