mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-18 06:32:05 +03:00
62f0a76937
* Limited Wasp node version to ^16.0.0 && <=16.15.0. In the process, I removed .nvmrc files from generated code and refactored SemanticVersion to follow npm spec. I also updated CI to use node 16.15.0, and not any 16. I also updated docs.
35 lines
691 B
JSON
35 lines
691 B
JSON
{{={= =}=}}
|
|
{
|
|
"name": "{= appName =}",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
{=& depsChunk =},
|
|
{=& devDepsChunk =},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app"
|
|
},
|
|
"engineStrict": true,
|
|
"engines": {
|
|
"node": "{=& nodeVersionRange =}",
|
|
"npm": "{=& npmVersionRange =}"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|