mirror of
https://github.com/KevinMidboe/planetposen-backend.git
synced 2025-10-29 08:20:12 +00:00
Initial commit: license, dependencies & config
This commit is contained in:
34
package.json
Normal file
34
package.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"scripts": {
|
||||
"start": "NODE_ENV=production node lib/webserver/server.js",
|
||||
"dev": "NODE_ENV=development node lib/webserver/server.js",
|
||||
"db:setup": "node lib/database/scripts/setupDatabase",
|
||||
"db:seed": "node lib/database/scripts/seedDatabase",
|
||||
"db:teardown": "node lib/database/scripts/teardownDatabase",
|
||||
"build:ts": "tsc --project tsconfig.json",
|
||||
"lint": "prettier --plugin-search-dir . --check src",
|
||||
"format": "prettier --plugin-search-dir . --write src"
|
||||
},
|
||||
"dependencies": {
|
||||
"@elastic/ecs-winston-format": "^1.3.1",
|
||||
"cookie": "^0.5.0",
|
||||
"express": "^4.18.2",
|
||||
"express-http-context": "^1.2.4",
|
||||
"pg": "^8.8.0",
|
||||
"stripe": "^10.16.0",
|
||||
"typescript": "^4.8.4",
|
||||
"uuid": "8.3.2",
|
||||
"winston": "^3.3.3",
|
||||
"ws": "^8.10.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/preset-env": "^7.12.10",
|
||||
"@types/express": "^4.17.14",
|
||||
"@types/node": "^18.11.5",
|
||||
"@typescript-eslint/eslint-plugin": "^5.41.0",
|
||||
"@typescript-eslint/parser": "^5.41.0",
|
||||
"babel-loader": "^8.2.2",
|
||||
"prettier": "2.2.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user