-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "ts-template",
"version": "0.1.0",
"description": "A template for TypeScript projects",
"main": "dist/index.js",
"type": "module",
"imports": {
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js"
},
"scripts": {
"build": "tsc -b src",
"dev": "pnpm build && pnpm start",
"lint": "eslint --fix --ext ts src tests",
"format": "prettier --write .",
"start": "node --enable-source-maps dist/index.js",
"postinstall": "husky install",
"test": "vitest run",
"test:format": "prettier --check ."
},
"repository": "[email protected]:JuanPablo2655/ts-template.git",
"author": "JuanPablo2655 <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-angular": "^18.4.4",
"@types/eslint": "^8.56.1",
"@types/node": "^20.10.8",
"@vitest/coverage-v8": "^1.1.3",
"eslint": "^8.56.0",
"eslint-config-neon": "^0.1.57",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vitest": "^1.1.3"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{.mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
}
}