-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 2.06 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 2.06 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "TemplRJS",
"version": "2025.10.0",
"description": "Initial bare-bone full-stack nuxt project.",
"private": true,
"workspaces": [
"packages/presentation"
],
"author": {
"name": "Artur Lissin",
"email": "artdotlis@pm.me"
},
"license": "The Unlicense",
"repository": {
"type": "git",
"url": "git@github.com:artdotlis/templrjs.git"
},
"keywords": [
"reveal.js",
"template"
],
"dependencies": {
"typescript": "5.9.3"
},
"devDependencies": {
"@types/bun": "1.2.22",
"@types/node": "22.18.5",
"commitizen": "4.3.1",
"@commitlint/cli": "20.1.0",
"cz-conventional-changelog": "3.3.0",
"@commitlint/config-conventional": "20.0.0",
"husky": "9.1.7",
"lint-staged": "16.2.3",
"prettier": "3.6.2"
},
"scripts": {
"build": "cd $PRES_PKG && bun --bun run build",
"serve": "cd $PRES_PKG && bun --bun run serve",
"dev": "cd $PRES_PKG && bun --bun run dev",
"lint": "lint-staged",
"lint:dev": "bash $BIN_RUN_ENV_LINT",
"lint:pres": "cd $PRES_PKG && bun --bun run lint",
"lint:shell": "shellcheck --rcfile=$CONFIG_SHELL $(find $BIN_DIR -type f -name *.sh) $(find $PKGS -type f -name *.sh)",
"lint:format": "prettier --config $CONFIG_PRETTIER --ignore-path $CONFIG_PRETTIER_IGNORE -c $PKGS/ --write",
"hook": "bun --bun run husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,html,css,md,json,yml,yaml}": [
"bin/lint/wrap_bash.sh 'prettier --config $CONFIG_PRETTIER --ignore-path $CONFIG_PRETTIER_IGNORE --write'"
],
"*.sh": [
"bin/lint/wrap_bash.sh 'shellcheck --rcfile=$CONFIG_SHELL'"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"type": "module",
"engines": {
"node": ">=22.0.0"
}
}