create-etsc-jest
Version:
Create a package following templates using TypeScript, esbuild, jest, and more
30 lines (29 loc) • 708 B
JSON
{
"name": "~TODO~",
"version": "1.0.0",
"description": "",
"license": "MIT",
"author": "~TODO~",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tsc",
"dev": "concurrently --raw \"nodemon\" \"tsc --noEmit --watch\"",
"prepare": "rimraf lib && tsc",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.10",
"@types/nodemon": "^1.19.0",
"@types/rimraf": "^3.0.0",
"concurrently": "^5.3.0",
"esbuild": "^0.7.17",
"esbuild-node-tsc": "^1.0.3",
"jest": "^26.6.0",
"nodemon": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
}
}