-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"$schema": "https://json.schemastore.org/package",
"name": "common-presets",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"ci": "concurrently 'yarn:lint:*' && lerna run type:check",
"postinstall": "husky",
"lint:css": "yarn stylelint '**/*.css'",
"lint:js": "eslint .",
"lint:md": "yarn remark .",
"prettier": "prettier --ignore-path=node_modules/@foray1010/prettier-config/prettierignore",
"remark": "remark --frail --ignore-path=node_modules/@foray1010/remark-preset/remarkignore --ignore-path-resolve-from=cwd --silently-ignore",
"stylelint": "stylelint --ignore-path=node_modules/@foray1010/stylelint-config/stylelintignore"
},
"devDependencies": {
"@babel/core": "7.26.7",
"@babel/runtime": "7.26.7",
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"concurrently": "9.1.2",
"eslint": "9.19.0",
"fast-glob": "3.3.3",
"husky": "9.1.7",
"jest": "29.7.0",
"lerna": "8.1.9",
"lint-staged": "15.4.3",
"node-notifier": "10.0.1",
"prettier": "3.4.2",
"remark-cli": "12.0.1",
"stylelint": "16.13.2",
"typescript": "5.7.3"
},
"packageManager": "yarn@4.6.0",
"engines": {
"node": "^18.12.0 || >=20.9.0"
}
}