-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.29 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
{
"name": "govuk-frontend-react",
"version": "0.0.12",
"description": "govuk-frontend as React components",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"sideEffects": false,
"scripts": {
"build": "npm run build:lib && npm run build:es",
"build:lib": "rimraf lib && copyup \"./src/**/*.scss\" ./lib && babel src -d lib --source-maps",
"build:es": "rimraf es && copyup \"./src/**/*.scss\" ./es && cross-env BABEL_ENV=es babel src -d es --source-maps",
"build-storybook": "build-storybook",
"eslint": "eslint ./src",
"eslint:fix": "eslint --fix ./src",
"flow": "flow",
"jest": "jest",
"jest:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"test": "jest && eslint ./src && flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/penx/govuk-frontend-react.git"
},
"keywords": [
"govuk",
"react"
],
"author": "Alasdair McLeay",
"license": "ISC",
"bugs": {
"url": "https://github.com/penx/govuk-frontend-react/issues"
},
"homepage": "https://github.com/penx/govuk-frontend-react#readme",
"dependencies": {
"classnames": "^2.2.6",
"govuk-frontend": "^2.4.0",
"merge-focus": "0.0.4",
"react-merge-values": "0.0.4"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.2.0",
"@storybook/addon-actions": "^4.0.12",
"@storybook/addon-links": "^4.0.12",
"@storybook/react": "^4.0.12",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.21",
"cheerio": "^1.0.0-rc.2",
"copyfiles": "^2.1.0",
"cross-env": "^5.2.0",
"empty": "^0.10.1",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"final-form": "^4.11.0",
"flow-bin": "^0.94.0",
"formik": "^1.4.2",
"govuk-frontend-template-spec": "0.0.6",
"html-react-parser": "^0.6.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-axe": "^2.1.4",
"jest-dom": "^3.0.0",
"jest-serializer-html": "^6.0.0",
"js-yaml": "^3.12.0",
"node-sass": "^4.10.0",
"nunjucks": "^3.1.4",
"prettier": "^1.15.3",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-final-form": "^4.0.2",
"react-router-dom": "^4.3.1",
"react-testing-library": "^5.3.2",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"user-event": "^1.4.4"
},
"peerDependencies": {
"react": ">=15"
},
"directories": {
"lib": "lib"
}
}