-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 861 Bytes
/
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
{
"name": "@flypeng/lint-config-monorepo",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"author": "flingyp <[email protected]> (https://github.com/flingyp/)",
"license": "MIT",
"scripts": {
"lint": "prettier . --write && eslint . && stylelint \"**/*.{css,scss,vue}\"",
"lint:fix": "prettier . --write && eslint . --fix && stylelint --fix \"**/*.{css,scss,vue}\""
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@flypeng/eslint-config": "workspace:^",
"@flypeng/stylelint-config": "workspace:^",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"scss": "^0.2.4",
"stylelint": "^16.11.0",
"typescript": "^5.7.2"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vue": "^3.5.13"
}
}