-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.88 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.88 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
{
"name": "@frameless/root",
"private": true,
"type": "module",
"version": "0.0.0",
"author": "Frameless",
"description": "Frameless monorepo root package",
"license": "EUPL-1.2",
"repository": {
"type": "git+ssh",
"url": "git@github.com:frameless/kennisbank.git",
"directory": "."
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"kennisbank-dashboard:start": "pnpm --filter @frameless/kennisbank-dashboard start",
"kennisbank-frontend:start": "pnpm --filter @frameless/kennisbank-frontend start",
"clean": "turbo run clean",
"lint": "turbo run lint",
"lint:css": "stylelint '**/*.{css,scss}'",
"lint-build": "turbo run lint-build",
"lint:prettier": "prettier --check .",
"lint:md": "markdownlint '**/*.md'",
"lint:package-json": "npmPkgJsonLint .",
"lint-all": "npm-run-all lint lint:*",
"lint-fix-all": "npm-run-all lint-fix lint-fix:*",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:md": "markdownlint --fix '**/*.md'",
"lint-fix:prettier": "prettier --write .",
"lint-fix": "turbo run lint-fix",
"prepare": "husky"
},
"devDependencies": {
"eslint-plugin-json": "4.0.1",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"markdownlint-cli": "0.45.0",
"npm-package-json-lint": "8.0.0",
"npm-run-all": "4.1.5",
"prettier": "3.6.1",
"slash": "5.1.0",
"stylelint": "15.10.3",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard-scss": "10.0.0",
"stylelint-order": "6.0.4",
"turbo": "2.5.4",
"typescript": "5.8.2"
},
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=18.0.0 <=22.x.x",
"pnpm": ">=8.0.0"
},
"dependencies": {
"@tiptap/extension-link": "3.1.0"
}
}