-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
166 lines (166 loc) · 5.38 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "@zopauk/react-components",
"sideEffects": false,
"description": "Shared react styled components for all the Zopa projects.",
"version": "5.71.6",
"license": "MIT",
"author": "Zopa Ltd <frontend-opensource@zopa.com> (https://zopa.com)",
"main": "cjs/src/index.js",
"module": "es/src/index.js",
"types": "types/index.d.ts",
"files": [
"/es",
"/cjs",
"/types",
"/src"
],
"scripts": {
"commit": "git-cz",
"dev": "NODE_ENV=development styleguidist server",
"dev:code": "concurrently --kill-others-on-fail \"pnpm:compile:code:dev -- -w \" \"pnpm compile:types -- -w\"",
"build": "NODE_ENV=production styleguidist build",
"compile": "pnpm compile:clean; pnpm compile:types && pnpm compile:code",
"compile:code": "rollup --config etc/rollup/config.mjs",
"compile:code:dev": "pnpm compile:code --watch",
"compile:types:dev": "pnpm compile:types --watch",
"sync": "concurrently pnpm:compile:code:dev pnpm:compile:types:dev",
"compile:clean": "rm -rf es cjs types",
"compile:types": "tsc --p ./tsconfig.types.json --incremental false",
"dev:zrc": "concurrently pnpm:compile:code:dev pnpm:compile:types:dev",
"test": "react-scripts test",
"format": "prettier -l --write \"**/*.{ts,tsx,js,jsx,json,less,css,md}\"",
"format:fix": "pnpm format --write",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "pnpm lint --fix",
"typecheck": "tsc --noEmit",
"release": "changeset publish",
"prepare": "husky install"
},
"dependencies": {
"@babel/runtime": "^7.18.3",
"@fortawesome/fontawesome-common-types": "0.2.36",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/react-fontawesome": "^0.2.0",
"@tippyjs/react": "^4.2.0",
"@types/classnames": "^2.2.10",
"@types/react-headroom": "^2.2.1",
"@types/react-modal": "^3.10.6",
"@types/util-deprecate": "^1.0.0",
"classnames": "^2.2.6",
"clsx": "^1.1.1",
"core-js": "^3.6.5",
"deprecated-prop-type": "^1.0.0",
"downshift": "^5.4.7",
"lodash.throttle": "^4.1.1",
"react-headroom": "^3.0.0",
"react-modal": "^3.11.2",
"react-use-clipboard": "^1.0.7",
"rollup-plugin-swc3": "^0.10.4",
"styled-normalize": "^8.0.7",
"tippy.js": "^6.2.7",
"util-deprecate": "^1.0.2"
},
"peerDependencies": {
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"formik": "^2.4.6",
"react": ">=18",
"react-dom": ">=18",
"styled-components": ">=5"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@fortawesome/free-solid-svg-icons": "5.13.1",
"@rollup/plugin-commonjs": "23.0.3",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-url": "8.0.1",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@svgr/webpack": "^6.2.1",
"@swc/core": "^1.3.21",
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "16.0.0",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "^26.0.24",
"@types/jest-axe": "^3.5.1",
"@types/lodash.throttle": "4.1.6",
"@types/node": "12.12.45",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.25",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-loader": "^8.2.5",
"babel-preset-react-app": "^10.0.1",
"commitizen": "4.2.5",
"concurrently": "^7.2.1",
"css-loader": "^6.7.1",
"cz-conventional-changelog": "3.3.0",
"esbuild": "^0.14.42",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-unused-imports": "^2.0.0",
"file-loader": "^6.2.0",
"husky": "^8.0.1",
"jest-axe": "4.1.0",
"jest-junit": "10.0.0",
"jest-styled-components": "6.3.4",
"kleur": "^4.1.5",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"react": "^18.3.1",
"react-dev-utils": "^12.0.1",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1",
"react-styleguidist": "^13.0.0",
"react-test-renderer": "^18.3.1",
"rollup": "3.5.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-terser": "7.0.2",
"semantic-release": "19.0.5",
"style-loader": "^3.3.1",
"styled-components": "4.4.1",
"typescript": "^4.7.2",
"webpack": "^5.73.0",
"webpack-dev-server": "^4.9.1"
},
"browserslist": [
"cover 95% in GB",
"not ie <=11",
"not safari <11",
"not ios <11",
"not dead"
],
"jest": {
"collectCoverageFrom": [
"src/components/**/*.{ts,tsx}"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZopaPublic/react-components.git"
},
"bugs": {
"url": "https://github.com/zopaUK/react-components/issues"
},
"homepage": "https://github.com/zopaUK/react-components#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@9.7.0"
}