-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.26 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@drivenets/design-system-monorepo",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.30.3",
"type": "module",
"scripts": {
"start": "pnpm run --filter @drivenets/design-system storybook",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "turbo run lint:root lint",
"lint:root": "eslint --max-warnings=0 .",
"typecheck": "turbo run typecheck typecheck:root",
"typecheck:root": "tsgo",
"lint:versions": "syncpack lint",
"lint:spell": "cspell . --quiet",
"lint:unused": "knip",
"lint:dedupe": "pnpm dedupe --check",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:requires-build": "turbo run test:requires-build",
"build": "turbo run build",
"build:lint": "turbo run build:lint",
"changelog": "changeset",
"release": "pnpm build && changeset publish",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@changesets/git": "^3.0.4",
"@changesets/read": "^0.6.7",
"@changesets/should-skip-package": "^0.1.2",
"@changesets/types": "^6.1.0",
"@changesets/write": "^0.4.0",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@commitlint/types": "^20.4.3",
"@cspell/dict-cspell-bundle": "^2.0.55",
"@cspell/dict-mime-types": "^1.0.1",
"@drivenets/commitlint-plugin-internal": "workspace:*",
"@eslint/core": "catalog:",
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.5",
"@typescript/native-preview": "catalog:",
"@vitest/eslint-plugin": "^1.6.9",
"cspell": "^9.7.0",
"eslint": "catalog:",
"eslint-config-flat-gitignore": "^2.2.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"knip": "^5.85.0",
"lint-staged": "^16.3.2",
"oxfmt": "^0.36.0",
"syncpack": "^14.0.0",
"turbo": "^2.8.14",
"typescript": "catalog:",
"typescript-eslint": "^8.58.2"
},
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.findlast": "npm:@nolyfill/array.prototype.findlast@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1",
"es-set-tostringtag": "npm:@nolyfill/es-set-tostringtag@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"object.entries": "npm:@nolyfill/object.entries@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object-keys": "npm:@nolyfill/object-keys@^1",
"object.values": "npm:@nolyfill/object.values@^1",
"safe-regex-test": "npm:@nolyfill/safe-regex-test@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1",
"string.prototype.includes": "npm:@nolyfill/string.prototype.includes@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1",
"string.prototype.repeat": "npm:@nolyfill/string.prototype.repeat@^1",
"eslint": "catalog:",
"typescript": "catalog:",
"semver": "^7.7.4",
"chokidar": "^5.0.0"
}
}
}