nork/package.json

59 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2021-08-15 00:33:57 +02:00
{
"name": "nork",
2022-02-02 16:01:34 +01:00
"version": "3.0.4",
"description": "The best node.js 'framework' :)",
2021-12-01 18:05:44 +01:00
"main": "dist/app.js",
"bin": "dist/app.js",
2022-01-13 11:43:47 +01:00
"types": "dist/app.d.ts",
"scripts": {
2021-12-01 18:05:44 +01:00
"start": "npm run start:prod",
"start:dev": "ts-node src/app.ts",
"start:prod": "node dist/app.js",
2022-02-01 19:11:48 +01:00
"tsc": "tsc -p .",
"clean": "rimraf dist",
"copy-assets": "ts-node src/utils/copyAssets",
"build": "npm-run-all clean tsc copy-assets",
2022-01-13 11:43:47 +01:00
"test": "mocha --config .mocharc.json --watch src/**/*.test.ts",
2022-02-01 19:11:48 +01:00
"prepublish": "npm-run-all build"
},
"keywords": [
"node",
"framework",
"express",
"mvc"
],
"author": "Filip Rojek",
"license": "MIT",
"dependencies": {
2022-02-02 16:01:34 +01:00
"colors":"1.4.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.1.2",
"pad": "^3.2.0"
},
2021-12-01 18:05:44 +01:00
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/mocha": "^9.0.0",
2022-02-01 19:11:48 +01:00
"@types/shelljs": "^0.8.11",
2021-12-01 18:05:44 +01:00
"@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",
2022-02-01 19:11:48 +01:00
"npm-run-all": "^4.1.5",
2021-12-01 18:05:44 +01:00
"rimraf": "^3.0.2",
2022-02-01 19:11:48 +01:00
"shelljs": "^0.8.5",
2021-12-01 18:05:44 +01:00
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filiprojek/nork.git"
},
"bugs": {
"url": "https://github.com/filiprojek/nork/issues"
},
"homepage": "https://github.com/filiprojek/nork/blob/master/README.md"
2021-12-01 18:05:44 +01:00
}