-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.9 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.9 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
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
{
"private": true,
"version": "1.0.0",
"workspaces": [
"./generator"
],
"scripts": {
"dev": "./scripts/dev.sh",
"generate": "node generateDocs.js",
"build": "yarn generate && node scripts/generate-v5-redirects.js && next build",
"build:next": "next build",
"dev:next": "next dev",
"start": "next start",
"export": "yarn build && next export",
"format": "prettier '{src,docs,scripts}/**/*.{css,js,mdx}' --write",
"eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --max-warnings=0 --fix",
"prepare-release-notes": "node scripts/prepareReleaseNotes.js",
"lint:fix": "yarn format && yarn eslint",
"get-id": "node -e 'console.log(require(\"@webiny/utils\").mdbid().slice(-8))'",
"validate:mdx": "tsx scripts/validate-mdx-pairing.ts",
"generate:reference": "tsx scripts/generate-reference.ts"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"not op_mini all",
"ie 11"
]
},
"dependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.18.6",
"@badrap/bar-of-progress": "^0.1.1",
"@docsearch/react": "^3.1.1",
"@headlessui/react": "^1.6.5",
"@heroicons/react": "^1.0.6",
"@juggle/resize-observer": "^3.2.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/bundle-analyzer": "^9.4.4",
"@reach/alert": "^0.16.0",
"@reach/rect": "^0.10.5",
"@silvenon/remark-smartypants": "^1.0.0",
"@sindresorhus/slugify": "^1.1.0",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/typography": "0.5.2",
"@webiny/react-composition": "^5.44.0",
"@webiny/react-properties": "^5.44.0",
"@webiny/utils": "^5.44.0",
"autoprefixer": "^10.4.0",
"babel-plugin-module-resolver": "^4.1.0",
"brotli-size": "^4.0.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"classnames": "^2.3.1",
"clean-css": "^4.2.3",
"clsx": "^1.1.1",
"debounce": "^1.2.0",
"dlv": "^1.1.3",
"file-loader": "^6.0.0",
"focus-visible": "^5.1.0",
"front-matter": "^4.0.2",
"fs-extra": "^9.1.0",
"globby": "^11.1.0",
"load-json-file": "^6.2.0",
"lodash.memoize": "^4.1.2",
"minimatch": "^3.0.4",
"next": "^15.5.12",
"node-gyp": "^9.0.0",
"p-map": "4.0.0",
"p-retry": "^4.6.2",
"postcss": "^8.4.5",
"postcss-focus-visible": "^5.0.0",
"postcss-import": "^14.0.1",
"prettier": "^2.5.0",
"prismjs": "^1.25.0",
"prompt-sync": "^4.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-image-lightbox": "^5.1.4",
"react-tabs": "^6.1.0",
"react-test-renderer": "18.2.0",
"redent": "^3.0.0",
"replace-in-path": "^1.1.0",
"rimraf": "^3.0.2",
"semver": "^7.3.7",
"simple-functional-loader": "^1.2.1",
"tailwindcss": "^3.4.17",
"tinytime": "^0.2.6",
"titlecase": "^1.1.3",
"walk": "^2.3.15",
"write-json-file": "^4.3.0",
"wts": "https://github.com/webiny/wts#ae82e59470d79dc448a74239bf9d2328f4b93499"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/react-test-renderer": "18.3.1",
"@types/semver": "^7.5.5",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"concurrently": "^7.2.2",
"eslint": "7.x",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"execa": "^5.0.0",
"inquirer": "^8.2.4",
"jest": "^29.6.4",
"ncp": "^2.0.0",
"ts-jest": "^29.1.1",
"ts-morph": "^27.0.2",
"tsx": "^4.21.0"
},
"packageManager": "yarn@3.2.0",
"resolutions": {
"@types/react": "18.3.28"
}
}