mirror of
https://gitlab.com/MrFry/mrfrys-node-server
synced 2025-04-01 20:24:18 +02:00
37 lines
1 KiB
JSON
Executable file
37 lines
1 KiB
JSON
Executable file
{
|
|
"name": "node-ejs",
|
|
"main": "src/server.js",
|
|
"dependencies": {
|
|
"@types/express": "^4.17.9",
|
|
"@types/node": "^14.14.9",
|
|
"babel-eslint": "^10.1.0",
|
|
"better-sqlite3": "^6.0.1",
|
|
"connect-busboy": "0.0.2",
|
|
"cookie-parser": "^1.4.5",
|
|
"cors": "^2.8.5",
|
|
"ejs": "^1.0.0",
|
|
"eslint-plugin-typescript": "^0.14.0",
|
|
"express": "^4.6.1",
|
|
"express-ejs-layouts": "^1.1.0",
|
|
"express-fileupload": "^1.2.1",
|
|
"queue-microtask": "^1.2.3",
|
|
"sqlite3": "^4.1.1",
|
|
"ts-node": "^9.0.0",
|
|
"typescript": "^4.1.2",
|
|
"typescript-eslint": "0.0.1-alpha.0",
|
|
"url": "^0.11.0",
|
|
"uuid": "^7.0.3",
|
|
"vhost": "^3.0.2"
|
|
},
|
|
"scripts": {
|
|
"start": "node ./dist/server.js",
|
|
"dev": "npm run build && NS_DEVEL=1 NS_NOUSER=1 NS_LOGLEVEL=1 node ./dist/server.js",
|
|
"build": "tsc && bash -c './scripts/postBuild.sh'",
|
|
"export": "tsc && bash -c './scripts/postBuild.sh'"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.8.1",
|
|
"@typescript-eslint/parser": "^4.22.0",
|
|
"eslint": "^7.14.0"
|
|
}
|
|
}
|