@postlight/node-typescript-starter-kit
Version:
NodeJS - TypeScript Starter Kit
56 lines (55 loc) • 1.39 kB
JSON
{
"name": "node-typescript-starter-kit",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "",
"author": "",
"license": "",
"scripts": {
"build": "tsc",
"lint": "eslint ./src --ext .ts,.js --fix",
"test": "jest",
"test:watch": "jest --watchAll",
"ts-node": "ts-node",
"nodemon": "nodemon"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-jest": "^26.3.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint ./src --ext .ts,.js --fix",
"pretty-quick",
"git add"
]
}
}