-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 2.18 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
{
"name": "sakazuki",
"private": true,
"dependencies": {
"@hotwired/stimulus": ">=3.2.2 <4",
"@hotwired/turbo-rails": ">=7.3.0 <8",
"@popperjs/core": ">=2.11.8 <3",
"bootstrap": ">=5.3.2 <6",
"bootstrap-icons": ">=1.11.1 <2",
"chart.js": ">=4.4.1 <5",
"esbuild": ">=0.19.11 <1",
"just-zip-it": ">=3.2.0 <4",
"rater-js": ">=1.0.1 <2",
"sass": ">=1.69.7 <2",
"simplelightbox": ">=2.14.2 <3",
"ts-deepmerge": ">=6.2.0 <7"
},
"version": "0.1.0",
"devDependencies": {
"@markuplint/erb-parser": ">=4.1.1 <5",
"@typescript-eslint/eslint-plugin": ">=6.17.0 <7",
"@typescript-eslint/parser": ">=6.17.0 <7",
"eslint": ">=8.56.0 <9",
"eslint-config-prettier": ">=9.1.0 <10",
"eslint-plugin-jsdoc": ">=46.10.1 <47",
"eslint-plugin-tsdoc": ">=0.2.17 <1",
"markdownlint-cli": ">=0.38.0 <1",
"markuplint": ">=4.1.1 <5",
"prettier": ">=3.1.1 <4",
"stylelint": ">=16.10.0 <17",
"stylelint-config-standard": ">=36.0.0 <37",
"stylelint-config-standard-scss": ">=12.0.0 <13",
"typescript": ">=5.3.3 <6"
},
"scripts": {
"lint:eslint": "eslint --max-warnings=0 --ignore-path .gitignore --ext .js,.ts .",
"lint:eslint:fix": "yarn run lint:eslint --fix",
"lint:tsc": "yarn run tsc --noEmit",
"lint:prettier": "prettier --ignore-path .gitignore --check . \"!.yarn/**/*\"",
"lint:prettier:fix": "prettier --ignore-path .gitignore --write . \"!.yarn/**/*\"",
"lint:markdownlint": "markdownlint --ignore-path .gitignore --dot .",
"lint:markdownlint:fix": "yarn run lint:markdownlint --fix",
"lint:stylelint": "stylelint 'app/assets/stylesheets/**/*.{scss,css}' --ignore-path .gitignore",
"lint:stylelint:fix": "yarn run lint:stylelint --fix",
"lint:markuplint": "markuplint \"app/views/**/*.html.erb\" \"public/*.html\"",
"build": "esbuild app/javascript/*.* --bundle --sourcemap --define:global=window --outdir=app/assets/builds",
"build:metafile": "esbuild app/javascript/*.* --bundle --metafile=meta.json --outdir=app/assets/builds",
"build:css": "sass ./app/assets/stylesheets/:./app/assets/builds/ --no-source-map --load-path=node_modules"
},
"packageManager": "yarn@4.0.2"
}