-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"$schema": "https://schema.easynm.cn/package.json",
"name": "@dcm/chores",
"version": "1.0.0",
"private": true,
"description": "Chores for dcmhub projects.",
"keywords": [
"chores",
"dcmhub"
],
"homepage": "https://github.com/dcmhub/chores",
"bugs": {
"url": "https://github.com/dcmhub/chores/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/dcmhub/chores"
},
"license": "MIT",
"author": {
"name": "DcmHub Inc.",
"email": "[email protected]",
"url": "https://dcmhub.com"
},
"contributors": [
{
"name": "Ritchie Zhu",
"email": "[email protected]",
"url": "https://laozhu.me"
}
],
"workspaces": [
"packages/*"
],
"scripts": {
"analyze": "lerna run analyze",
"build": "lerna run build",
"check:browsers": "browserslist",
"check:changed": "lerna changed --long -all",
"check:packages": "lerna list --long -all",
"check:size": "lerna run check:size",
"check:types": "lerna run check:types",
"ci": "run-s test lint",
"clean": "run-p -c clean:cache clean:logs clean:modules clean:packages",
"clean:cache": "rimraf .DS_Store .eslintcache .stylelintcache *.tsbuildinfo",
"clean:logs": "rimraf npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* report.*.json *.cpuprofile",
"clean:modules": "lerna clean --yes",
"clean:packages": "lerna run clean",
"commit": "git-cz",
"commit:dirty": "yarn run commit --no-verify",
"dev": "lerna run dev",
"eslint": "eslint --cache --ext .js,.jsx,.mjs,.ts,.tsx,.vue --format=pretty .",
"eslint:fix": "yarn run eslint --fix",
"lint": "run-s stylelint eslint prettier check:types check:size",
"lint:fix": "run-s stylelint:fix eslint:fix prettier:fix",
"prettier": "prettier --check \"**/*.{json,css,scss,less,wxss,html,md,mdx}\"",
"prettier:fix": "prettier --write \"**/*.{json,css,scss,less,wxss,html,md,mdx}\"",
"release": "lerna publish from-package",
"start": "lerna run start",
"stylelint": "stylelint --cache --aei \"**/*.{css,scss,less,wxss}\"",
"stylelint:fix": "yarn run stylelint --fix",
"test": "lerna run test"
},
"lint-staged": {
"**/*.{css,scss,less,wxss}": "yarn run stylelint",
"**/*.{js,jsx,mjs,ts,tsx,vue}": "yarn run eslint",
"**/*.{json,css,scss,less,wxss,html,md,mdx}": "pretty-quick --staged"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"browserslist": {
"production": [
"> 0.2%",
"not dead",
"not ie <= 11",
"not ie_mob <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 edge version",
"last 1 firefox version",
"last 1 safari version",
"last 1 ios version",
"last 1 android version"
]
},
"prettier": "@dcm/prettier-config",
"dependencies": {
"@babel/runtime": "^7.13.6",
"core-js": "^3.9.0"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@commitlint/cli": "^12.0.0",
"@commitlint/prompt": "^12.0.0",
"@types/express": "^4.17.11",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/webpack-env": "^1.16.0",
"babel-plugin-module-resolver": "^4.1.0",
"browserslist": "^4.16.3",
"commitizen": "^4.2.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.20.0",
"eslint-formatter-pretty": "^4.0.0",
"esm": "^3.2.25",
"husky": "^5.1.1",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.6",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.10",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"stylelint": "^13.11.0",
"typescript": "^4.2.2",
"webpack": "^5.24.1",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3"
},
"engines": {
"node": ">=14.15.5"
}
}