wasp/waspc/e2e-test/test-outputs/waspBuild-golden/waspBuild/.wasp/build/server/package.json
Filip Sodić 8a3fba8831
Require LTS version of Node for Wasp (#504)
* 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>
2022-03-21 15:00:19 +01:00

39 lines
949 B
JSON

{
"dependencies": {
"@prisma/client": "3.9.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "8.2.0",
"express": "~4.16.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"secure-password": "^4.0.0"
},
"devDependencies": {
"nodemon": "^2.0.4",
"prisma": "3.9.1",
"standard": "^14.3.4"
},
"engines": {
"node": "^16.0.0",
"npm": "^8.0.0"
},
"name": "server",
"nodemonConfig": {
"delay": "1000"
},
"private": true,
"scripts": {
"db-migrate-dev": "prisma migrate dev --schema=../db/schema.prisma",
"db-migrate-prod": "prisma migrate deploy --schema=../db/schema.prisma",
"debug": "DEBUG=server:* npm start",
"standard": "standard",
"start": "nodemon -r dotenv/config ./src/server.js",
"start-production": "NODE_ENV=production node ./src/server.js"
},
"type": "module",
"version": "0.0.0"
}