forked from code-server-boilerplates/nodejs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.59 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": "@code-server-boilerplates/nodejs-starter",
"version": "0.1.0",
"description": "Tools and scripts for the template",
"scripts": {
"prepare": "husky install",
"commit": "cz --signoff",
"build:buildkit": "DOCKER_BUILDKIT=1 docker build --tag registry.repohub.dev/code-server-boilerplates/nodejs-starter .",
"build:no-buildkit": "DOCKER_BUILDKIT=0 docker build --tag registry.repohub.dev/code-server-boilerplates/nodejs-starter .",
"build": "npm run build:buildkit",
"start": "docker-compose up -d",
"logs": "docker-compose logs --follow --timestamps --tail=all",
"ci:trigger-gha": "./scripts/trigger-rebuild",
"shellcheck:entrypoint": "shellcheck toolkits/containers/entrypoint.sh",
"shellcheck:scripts": "shellcheck scripts/commit scripts/trigger-rebuild"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"defaultScope": "global"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-server-boilerplates/starter-pack.git"
},
"author": "Community Maintainers <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/code-server-boilerplates/starter-pack/issues"
},
"homepage": "https://github.com/code-server-boilerplates/starter-pack#readme",
"dependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0"
}
}