mirror of
https://github.com/filiprojek/nork.git
synced 2024-11-02 18:12:28 +01:00
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "project-name",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "node dist/app.js",
|
|
"dev": "nodemon src/app.ts",
|
|
"test": "jest",
|
|
"clean": "rimraf dist/*",
|
|
"copy-assets": "ts-node src/utils/copyAssets",
|
|
"tsc": "tsc -p .",
|
|
"build": "npm-run-all clean tsc copy-assets"
|
|
},
|
|
"keywords": [],
|
|
"author": "Filip Rojek",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^8.2.0",
|
|
"ejs": "^3.1.6",
|
|
"express": "^4.17.1",
|
|
"mongoose": "^5.12.3",
|
|
"morgan": "^1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.10",
|
|
"@types/ejs": "^3.0.6",
|
|
"@types/express": "^4.17.11",
|
|
"@types/fs-extra": "^9.0.12",
|
|
"@types/jest": "^26.0.24",
|
|
"@types/mongoose": "^5.10.5",
|
|
"@types/morgan": "^1.9.2",
|
|
"@types/node": "^14.14.41",
|
|
"@types/shelljs": "^0.8.9",
|
|
"fs-extra": "^10.0.0",
|
|
"jest": "^27.0.6",
|
|
"npm-run-all": "^4.1.5",
|
|
"rimraf": "^3.0.2",
|
|
"shelljs": "^0.8.4",
|
|
"ts-jest": "^27.0.4",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.2.4"
|
|
}
|
|
}
|