-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.08 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
{
"name": "@moneypensionservice/directories",
"version": "2.0.4",
"description": "Directories React Component Library",
"homepage": "https://moneyadviceservice.github.io/react_library/",
"repository": {
"type": "git",
"url": "https://github.com/moneyadviceservice/react_library"
},
"bugs": {
"url": "https://github.com/moneyadviceservice/react_library/issues",
"email": "[email protected]"
},
"main": "lib/index.js",
"files": [
"/lib"
],
"browser": "lib/index.umd.js",
"module": "lib/index.es.js",
"scripts": {
"start": "styleguidist server",
"test": "jest",
"docs:build": "styleguidist build",
"build": "rollup -c",
"prepublishOnly": "rm -rf lib && npm run build",
"postbuild": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz"
},
"keywords": [],
"author": "",
"license": "ISC",
"peerDependencies": {
"react": "^16.x",
"react-dom": "^16.x",
"styled-components": "^5.x"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-arrow-functions": "^7.10.1",
"@babel/plugin-transform-destructuring": "^7.10.4",
"@babel/plugin-transform-parameters": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/plugin-transform-template-literals": "^7.10.5",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-url": "^5.0.1",
"@svgr/rollup": "^5.4.0",
"@svgr/webpack": "^5.2.0",
"@testing-library/react": "^9.4.1",
"acorn": "^6.4.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-module-resolver": "^0.16.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"file-loader": "^5.1.0",
"jest": "^25.1.0",
"json-loader": "^0.5.7",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-styleguidist": "^10.6.2",
"rollup": "^2.22.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-terser": "^5.2.0",
"url-loader": "^3.0.0",
"webpack": "^4.41.6"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"axios": "^0.20.0",
"core-js": "^3.6.5",
"styled-components": "^5.x"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
}
}