-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 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
{
"description": "Shared configurations and tooling for Perimetre projects",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@perimetre/eslint-config-base": "workspace:*",
"@perimetre/eslint-config-react": "workspace:*",
"@perimetre/prettier-config": "workspace:*",
"eslint": "^9.39.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"pls-changeset-me": "^0.0.11",
"prettier": "^3.8.1",
"turbo": "latest",
"typescript": "^5.9.3"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"*.{js,mjs,cjs,ts,tsx,json}": [
"eslint --fix"
]
},
"name": "@perimetre/framework",
"packageManager": "pnpm@10.30.0",
"prettier": "@perimetre/prettier-config",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/perimetre/framework.git"
},
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"release": "turbo run build && changeset publish",
"typecheck": "turbo run typecheck",
"version": "changeset version"
},
"version": "0.0.0"
}