nork works

This commit is contained in:
2022-02-01 19:11:48 +01:00
parent 00033fd439
commit 9c03dbef15
18 changed files with 21 additions and 241 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "nork",
"version": "3.0.1",
"version": "3.0.3",
"description": "The best node.js 'framework' :)",
"main": "dist/app.js",
"bin": "dist/app.js",
@@ -9,9 +9,12 @@
"start": "npm run start:prod",
"start:dev": "ts-node src/app.ts",
"start:prod": "node dist/app.js",
"build": "rimraf dist && tsc -p .",
"tsc": "tsc -p .",
"clean": "rimraf dist",
"copy-assets": "ts-node src/utils/copyAssets",
"build": "npm-run-all clean tsc copy-assets",
"test": "mocha --config .mocharc.json --watch src/**/*.test.ts",
"prepublish": "rimraf dist && tsc -p ."
"prepublish": "npm-run-all build"
},
"keywords": [
"node",
@@ -32,12 +35,15 @@
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/mocha": "^9.0.0",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"chai": "^4.3.4",
"eslint": "^8.3.0",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},