-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "service-template",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"commitlint": "commitlint --edit $HUSKY_GIT_PARAMS",
"build": "ts-node esbuild.ts",
"postinstall": "git update-index --assume-unchanged postinstall.ts && ts-node postinstall.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mizok/service-template.git"
},
"keywords": [
"vite",
"service",
"template"
],
"author": "Mizok",
"license": "MIT",
"bugs": {
"url": "https://github.com/mizok/service-template/issues"
},
"homepage": "https://github.com/mizok/service-template#readme",
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/types": "^17.8.1",
"@types/node": "^20.8.10",
"chalk": "^5.3.0",
"copyfiles": "^2.4.1",
"esbuild": "^0.19.8",
"husky": "^8.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}