-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "typescript-template",
"version": "1.0.0",
"description": "This is a template for TypeScript related projects.",
"main": "dist/index.js",
"repository": "https://github.com/bmacher/typescript-template.git",
"author": "Benjamin Macher",
"license": "MIT",
"scripts": {
"postinstall": "node scripts/npm-post-install-hook.js",
"start": "ts-node src/index.ts",
"build": "npm run clean && tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"check:all": "yarn lint && yarn test:verbose && yarn build",
"compile": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:verbose": "jest --verbose",
"test:coverage": "npm run test:clean && jest --coverage",
"test:clean": "rm -rf coverage"
},
"devDependencies": {
"@bmacher/eslint-config-typescript": "^1.1.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/eslint": "^8.4.1",
"@types/jest": "^27.4.1",
"@types/node": "^22.10.1",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^14.0.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^26.6.3",
"prettier": "^3.4.1",
"shelljs": "^0.8.5",
"ts-jest": "^26.5.6",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}