-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
132 lines (132 loc) · 4.03 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
132
{
"name": "a8k-packages",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/hxfdarling/a8k.git"
},
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"lint": "eslint --format node_modules/eslint-friendly-formatter --config .eslintrc.yml --fix packages --ext .ts,.tsx,js,jsx",
"build": "lerna run --stream --sort build",
"dev": "lerna run dev --parallel",
"test": "lerna run test --stream --sort",
"before:version": "npm run test && npm run lint && npm run build",
"lerna:version": "npm run before:version && lerna version --conventional-commits",
"lerna:version:beta": "npm run before:version && lerna version --conventional-prerelease --preid beta",
"lerna:publish:beta": "lerna publish from-package --yes --dist-tag beta",
"lerna:publish": "lerna publish from-package --yes",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs"
},
"workspaces": [
"packages/*"
],
"author": "zman <[email protected]>",
"bugs": {
"url": "https://github.com/hxfdarling/a8k/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "node_modules/@a8k/changelog/cz-config.js"
}
},
"dependencies": {},
"devDependencies": {
"@a8k/changelog": "^1.17.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/travis-cli": "^8.3.5",
"@types/express": "^4.17.3",
"@types/fs-extra": "^8.1.1",
"@types/global-modules": "^2.0.0",
"@types/http-proxy-middleware": "^0.19.2",
"@types/inquirer": "^6.5.0",
"@types/jest": "^24.9.1",
"@types/koa": "^2.11.2",
"@types/lodash": "^4.14.159",
"@types/micromatch": "^3.1.1",
"@types/node": "^12.12.54",
"@types/ora": "^3.2.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.5",
"@types/resolve": "0.0.8",
"@types/semver": "^6.2.1",
"@types/shelljs": "^0.8.7",
"@types/webpack-dev-server": "^3.10.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@vuepress/plugin-back-to-top": "^1.5.3",
"@vuepress/plugin-pwa": "^1.5.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"commitizen": "^3.1.2",
"commitlint-config-cz": "^0.12.1",
"cz-customizable": "^6.3.0",
"del": "^4.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsdoc": "^22.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^16.1.1",
"html-loader": "^0.5.5",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-extended": "^0.11.5",
"lerna": "^3.20.2",
"lint-staged": "^9.5.0",
"memory-fs": "^0.4.1",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"typescript": "^3.8.3",
"vm": "^0.1.0",
"vuepress": "^1.5.3",
"webpack": "^4.44.1"
},
"directories": {
"doc": "docs"
},
"homepage": "https://github.com/hxfdarling/a8k#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"lint-staged": {
"*.{json,css,scss,md}": [
"prettier --write",
"git add"
],
"*.{jsx,js}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}