ts-common/package.json

42 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2021-09-13 18:16:50 +07:00
{
2021-09-13 18:59:02 +07:00
"name": "@cubetiq/ts-common",
2021-09-13 18:16:50 +07:00
"version": "1.0.0",
2021-09-13 18:50:32 +07:00
"description": "Typescript common and web utils",
2021-09-13 18:16:50 +07:00
"main": "dist/index.js",
2021-12-22 16:30:34 +07:00
"source": "src/index.ts",
2021-09-13 18:16:50 +07:00
"scripts": {
"start": "tsc -w",
2021-09-13 20:32:14 +07:00
"build": "rm -rf dist && tsc",
"prepare": "husky install"
2021-09-13 18:16:50 +07:00
},
"repository": {
"type": "git",
2021-09-13 18:50:32 +07:00
"url": "https://git.cubetiqs.com/CUBETIQ/ts-common.git"
2021-09-13 18:16:50 +07:00
},
"keywords": [
2021-09-13 18:50:32 +07:00
"Typescript",
"Nodejs",
"Common",
"Utils"
2021-09-13 18:16:50 +07:00
],
"author": "Sambo Chea <sombochea@cubetiqs.com>",
"license": "ISC",
"devDependencies": {
2021-09-13 18:34:26 +07:00
"@types/node": "^16.9.1",
2021-09-13 18:16:50 +07:00
"@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-prefer-arrow": "^1.2.3",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "2.3.2",
"typescript": "^4.4.2"
},
"dependencies": {
"chalk": "^4.1.2"
},
2021-09-13 18:16:50 +07:00
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
2021-12-22 16:30:34 +07:00
}