-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.98 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"version": "1.73.0",
"name": "whatislove.dev",
"private": true,
"type": "module",
"engines": {
"node": "20.x.x",
"npm": "10.x.x"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"_prettier": "prettier \"**/*.{md,json,yml,html,njk,css,js,jsx,cjs,d.ts}\"",
"git:hook:precommit": "lint-staged --cwd .",
"git:hook:commit": "npx @commitlint/cli --edit",
"build": "npm run build --workspaces",
"ci:lint:fs": "ls-lint",
"ci:lint:editor": "editorconfig-checker",
"ci:lint:format": "npm run _prettier -- --check",
"ci:lint:trash": "knip",
"ci:lint:js": "eslint \"**/*\"",
"ci:lint:type": "tsc --noEmit",
"ci:lint": "concurrently \"npm:ci:lint:*\" && npm run ci:lint --workspaces",
"ci:format": "npm run _prettier -- --write",
"ci:prepare": "simple-git-hooks"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "18.4.0",
"@commitlint/types": "18.4.3",
"@eslint/js": "9.12.0",
"@ls-lint/ls-lint": "2.3.0-beta.1",
"@types/eslint__js": "8.42.3",
"@types/lint-staged": "13.3.0",
"@typescript-eslint/eslint-plugin": "8.8.0",
"@typescript-eslint/parser": "8.8.0",
"concurrently": "8.2.2",
"editorconfig-checker": "5.1.5",
"eslint": "9.12.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "48.2.1",
"eslint-plugin-perfectionist": "3.8.0",
"eslint-plugin-sonarjs": "1.0.3",
"eslint-plugin-unicorn": "55.0.0",
"globals": "13.24.0",
"knip": "5.7.0",
"lightningcss": "1.25.1",
"lint-staged": "15.2.0",
"prettier": "3.2.5",
"prettier-plugin-jinja-template": "1.3.1",
"prettier-plugin-jsdoc": "1.1.1",
"simple-git-hooks": "2.9.0",
"stylelint": "16.2.1",
"stylelint-config-recess-order": "4.4.0",
"stylelint-config-standard": "35.0.0",
"stylelint-use-logical-spec": "5.0.1",
"typescript": "5.3.3",
"vite": "5.1.5"
},
"simple-git-hooks": {
"pre-commit": "npm run git:hook:precommit",
"commit-msg": "npm run git:hook:commit"
}
}