-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
47
48
49
50
{
"name": "typescript-module-template",
"version": "1.0.0",
"description": "description of the module",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc --sourceMap false",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --quiet --fix",
"test": "jest -c jest.config.ts",
"test:coverage": "jest -c jest.config.ts --verbose --collectCoverage",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sort-class-members": "^1.18.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"**/*.{js,ts}": "eslint --cache --fix",
"**/*.{js,ts,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teunmooij/typescript-module-template.git"
},
"keywords": [],
"author": "Teun Mooij",
"license": "MIT",
"bugs": {
"url": "https://github.com/teunmooij/typescript-module-template/issues"
},
"homepage": "https://github.com/teunmooij/typescript-module-template#readme"
}