mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-22 00:21:43 +03:00
8a3fba8831
* Require LTS node and npm on client and server * Update node and npm versions in the docs * Add npmrc and nvmrc to WebAppGenerator * Change function name in test * Add newline to nvmrc * Add newline to Common.hs * Remove extra empty line in nvmrc * Remove extra empty line in Common.hs * Update end to end tests for node LTS * Add newline at the end of server/nvmrc * Ensure Node version 16 in CI * Fix broken ci file * Change how Wasp specifies required versions * Fix formatting * Use type alias for semantic versions * Remove incorrect comment on Prisma LTS * Update e2e checksums * Fix typo in gitignore Co-authored-by: Martin Šošić <Martinsos@users.noreply.github.com> * Sort e2e checksums * Extract semantic version to its module * Fix formatting * Fix formatting again * Add comment explaining nvmrc * Add tests and change semver naming * Add natural numbers and formatting to semver * Add newline at the end of semver module * Add missing space to node mismatch message Co-authored-by: Martin Šošić <Martinsos@users.noreply.github.com>
42 lines
843 B
JSON
42 lines
843 B
JSON
{
|
|
"browserslist": {
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
],
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.21.1",
|
|
"lodash": "^4.17.15",
|
|
"react": "^16.12.0",
|
|
"react-dom": "^16.12.0",
|
|
"react-query": "^2.14.1",
|
|
"react-router-dom": "^5.1.2",
|
|
"react-scripts": "4.0.3",
|
|
"uuid": "^3.4.0"
|
|
},
|
|
"devDependencies": {},
|
|
"engines": {
|
|
"node": "^16.0.0",
|
|
"npm": "^8.0.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app"
|
|
},
|
|
"name": "waspMigrate",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "react-scripts build",
|
|
"eject": "react-scripts eject",
|
|
"start": "react-scripts start",
|
|
"test": "react-scripts test"
|
|
},
|
|
"version": "0.0.0"
|
|
}
|