cubetiq-express-server/package.json
CUBETIQ Solution 2e80a89398 Initial commit
2021-09-16 17:23:07 +07:00

41 lines
1.2 KiB
JSON

{
"name": "@cubetiq/ts-project",
"version": "1.0.0",
"description": "TS project template",
"main": "dist/index.js",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "rm -rf dist && tsc",
"serve": "npm run build && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://git.cubetiqs.com/CUBETIQ/ts-project.git"
},
"keywords": [
"TypeScript",
"Nodejs"
],
"author": "Sambo Chea <sombochea@cubetiqs.com>",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "2.3.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2",
"@types/node": "^16.9.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}