-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.89 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "monorepo",
"private": true,
"version": "0.0.4",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"prepare": "husky install",
"commit": "git-cz",
"cz": "git-cz",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue",
"eslint:fix": "eslint . --ext .js,.jsx,.ts,.tsx,.vue --fix",
"stylelint": "stylelint ./**/*.{vue,css,less,scss}",
"stylelint:fix": "stylelint ./**/*.{vue,css,less,scss} --fix",
"lint": "npm run eslint && npm run stylelint",
"postcss": "npx postcss ./examples/react/src/index.css --dir ./examples/react/dist/ ",
"dev:demo1": "cd projects/vite-project && pnpm install && pnpm dev",
"pull": "git pull && cd .vscode && git pull && cd .. && cd config && git pull && cd .. && cd utils && git pull && cd ..",
"clean": "node ./clean_node_modules.js",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"autoprefixer": "^10.4.12",
"commitlint": "^17.1.2",
"eslint": "^8.24.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vue": "^9.5.1",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"postcss-preset-env": "^7.8.2",
"postcss-pxtorem": "^6.0.0",
"postcss-scss": "^4.0.5",
"react": "^18.2.0",
"standard-version": "^9.5.0",
"stylelint": "^14.12.1",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^4.6.4",
"vite": "^3.1.3",
"vue-eslint-parser": "^9.1.0"
}
}