-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.88 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
{
"name": "ssss",
"private": true,
"scripts": {
"install": "lerna bootstrap",
"all:fe:dev": "lerna run fe:dev",
"all:fe:build": "lerna run fe:build",
"all:server:dev": "lerna run server:dev",
"all:server": "lerna run server",
"app1:fe:dev": "lerna run fe:dev --scope=app1",
"app1:fe:build": "lerna run fe:build --scope=app1",
"app1:server:dev": "lerna run server:dev --scope=app1",
"app1:server": "lerna run server --scope=app1",
"main:fe:dev": "lerna run fe:dev --scope=main",
"main:fe:build": "lerna run fe:build --scope=main",
"main:server:dev": "lerna run server:dev --scope=main",
"main:server": "lerna run server --scope=main",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,css,sass,less,md,json}\"",
"eslint": "eslint --fix \"**/*.{js,jsx,tsx,md,json}\"",
"stylelint": "npx stylelint --fix \"**/*.{css,scss,less}\"",
"dumi:dev": "node generateDocs && dumi dev",
"dumi:build": "node generateDocs && dumi build",
"build:aeps-rc": "lerna run build --scope=aeps-rc",
"publish": "lerna publish",
"commit": "git-cz",
"genlog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"pm2start:dev": "lerna run pm2start:dev",
"pm2start": "lerna run pm2start",
"pm2restart": "pm2 restart all",
"pm2monit": "pm2 monit",
"pm2stop": "pm2 stop all",
"pm2delete": "pm2 delete all"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,tsx,css,sass,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-lerna-changelog": "^2.0.3",
"dumi": "^1.0.13",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-redux": "^3.3.2",
"father-build": "^1.20.1",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"lint-staged": "^10.0.7",
"prettier": "^2.2.1",
"stylelint": "^13.13.1",
"stylelint-config-recess-order": "^2.5.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.21.0",
"yamljs": "^0.3.0",
"yorkie": "^2.0.0"
}
}