-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.3 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
{
"name": "@cpsoinos/config",
"scripts": {
"ci:format": "prettier --write --check --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx,vue,md,mdx,gql,graphql,json,yml,yaml}\"",
"ci:publish": "changeset publish",
"ci:version": "changeset version",
"commit": "commit",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,vue,md,mdx,gql,graphql,json,yml,yaml}\"",
"lint": "eslint --flag unstable_ts_config",
"lint:fix": "eslint --flag unstable_ts_config --fix",
"prepare": "husky"
},
"lint-staged": {
"package.json": [
"npx sort-package-json \"package.json\" \"packages/*/package.json\""
],
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [
"eslint --flag unstable_ts_config --fix",
"prettier --write"
],
"*.{css,postcss,json,html,md,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "2.27.10",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@cpsoinos/eslint-flat-configs": "workspace:*",
"@cpsoinos/prettier-config": "workspace:*",
"@nrwl/workspace": "19.8.4",
"eslint": "^9.16.0",
"husky": "9.1.7",
"lint-staged": "^15.2.2",
"nx": "19.8.14",
"prettier": "3.4.2",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"packageManager": "[email protected]"
}