mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-28 03:35:45 +03:00
cbfadd69ad
The engines field in package.json only gets blocked with the appropriate .npmrc, which is provided. If we allow earlier versions of npm to operate together with later versions, we get massive package-lock.json changes switching it from v1 to v2 and back again. We want to avoid this churn.
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "web",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"docusaurus": "docusaurus",
|
|
"start": "docusaurus start",
|
|
"build": "docusaurus build",
|
|
"swizzle": "docusaurus swizzle",
|
|
"deploy": "docusaurus deploy",
|
|
"clear": "docusaurus clear",
|
|
"serve": "docusaurus serve",
|
|
"write-translations": "docusaurus write-translations",
|
|
"write-heading-ids": "docusaurus write-heading-ids"
|
|
},
|
|
"dependencies": {
|
|
"@docusaurus/core": "2.0.0-beta.6",
|
|
"@docusaurus/preset-classic": "2.0.0-beta.6",
|
|
"@mdx-js/react": "^1.6.21",
|
|
"@svgr/webpack": "^5.5.0",
|
|
"clsx": "^1.1.1",
|
|
"file-loader": "^6.2.0",
|
|
"prism-react-renderer": "^1.2.1",
|
|
"react": "^17.0.1",
|
|
"react-dom": "^17.0.1",
|
|
"react-modal": "^3.14.3",
|
|
"url-loader": "^4.1.1"
|
|
},
|
|
"engines": {
|
|
"node": "16",
|
|
"npm": "8"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.5%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|