-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
102 lines (102 loc) · 3.5 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
{
"name": "govuk-react-jsx",
"version": "1.2.0",
"description": "React component ports of govuk-frontend nunjucks macros. Directly consuming govuk-frontend CSS & JS.",
"main": "src/govuk/index.js",
"scripts": {
"test": "jest --notify --verbose",
"storybook": "start-storybook -p 6006",
"fetch-examples": "node scripts/fetch-govuk-frontend-examples.js",
"prestorybook": "npm run fetch-examples",
"prebuild-storybook": "npm run fetch-examples",
"pretest": "npm run fetch-examples",
"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": {
"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"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/surevine/govuk-react-jsx.git"
},
"keywords": [
"govuk",
"react",
"jsx",
"components",
"govuk-frontend"
],
"author": "Andy Mantell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/surevine/govuk-react-jsx/issues"
},
"homepage": "https://github.com/surevine/govuk-react-jsx#readme",
"dependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@markedjs/html-differ": "^3.0.0",
"@starptech/prettyhtml": "^0.10.0",
"@storybook/addon-actions": "^5.3.7",
"@storybook/addons": "^5.3.7",
"@storybook/react": "^5.3.7",
"@testing-library/react": "^9.4.0",
"babel-loader": "^8.0.6",
"cli-progress": "^3.5.0",
"copy": "^0.3.2",
"css-loader": "^3.4.2",
"deep-iterator": "^1.1.0",
"ent": "^2.2.0",
"file-loader": "^5.0.2",
"gh-pages": "^2.2.0",
"glob": "^7.1.6",
"got": "^10.2.2",
"govuk-frontend": "3.5.0",
"jest": "^24.9.0",
"js-yaml": "^3.13.1",
"mkdirp": "^0.5.1",
"nunjucks": "^3.2.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-helmet": "^5.2.1",
"react-html-parser": "^2.0.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"sass": "^1.25.0",
"sass-loader": "^8.0.2",
"storybook-addon-jsx": "^7.1.13",
"style-loader": "^1.1.3",
"webpack": "4.41.5"
}
}