-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.81 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
51
52
53
54
55
56
57
{
"name": "typescript-boilerplate",
"version": "1.0.0",
"description": "Organisation-level boilerplate for TypeScript projects",
"main": "lib/index.js",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "nodemon lib/index.js",
"dev": "concurrently --kill-others --prefix [{name}] --names tsc,cleaner,node 'npm:build:watch' 'npm:cleaner' 'npm:start'",
"build": "tsc",
"build:watch": "tsc --watch --preserveWatchOutput",
"cleaner": "ts-cleaner --dist lib --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --config jest.coverage.js",
"test:coverage:watch": "jest --watchAll --config jest.coverage.js",
"lint": "eslint . --ext .ts",
"doc": "typedoc --out docs src",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheCodingDen/typescript-boilerplate.git"
},
"author": "The Coding Den",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheCodingDen/typescript-boilerplate/issues"
},
"homepage": "https://github.com/TheCodingDen/typescript-boilerplate#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.3",
"ts-cleaner": "^1.0.5",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.(ts|js)": "eslint --cache --fix"
}
}