forked from LandRegistry/govuk-react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.11 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.11 KB
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
{
"name": "govuk-react-components",
"version": "3.1.0-3",
"description": "GOV.UK React Components",
"peerDependencies": {
"govuk-frontend": "3.1.0"
},
"scripts": {
"installGovukFrontend": "node install-govuk-frontend.js",
"prestart": "npm run installGovukFrontend",
"prebuild": "npm run installGovukFrontend",
"pretest": "npm run installGovukFrontend",
"start": "webpack-dev-server --mode development --open --hot --history-api-fallback",
"build": "webpack --mode production",
"test": "jest tests --notify --verbose",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
},
"jest": {
"moduleNameMapper": {
"govuk/assets/images/govuk-logotype-crown.png": "<rootDir>/tests/mocks/govukHeaderCrown.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/LandRegistry/govuk-react-components"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"react": "16",
"prop-types": "15",
"react-dom": ">=16.0.1",
"react-router-dom": "5"
},
"devDependencies": {
"@babel/core": "7.11.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@markedjs/html-differ": "^3.0.0",
"@starptech/prettyhtml": "0.10.0",
"babel-loader": "8.0.6",
"babel-eslint": "10.0.3",
"css-loader": "3.2.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"ent": "2.2.0",
"eslint": "6.3.0",
"eslint-config-airbnb": "18.0.1",
"eslint-loader": "3.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-jsx-a11y": "6.2.3",
"file-loader": "4.2.0",
"glob": "7.1.4",
"html-webpack-plugin": "3.2.0",
"jest": "24.9.0",
"js-yaml": "3.13.1",
"mkdirp": "^0.5.1",
"node-sass": "4.13.1",
"nunjucks": "3.2.0",
"react-html-parser": "2.0.2",
"regenerator-runtime": "0.13.3",
"sass-loader": "8.0.0",
"style-loader": "1.0.0",
"sync-request": "6.1.0",
"url-loader": "2.1.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.2"
}
}