-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.19 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
{
"name": "autos",
"version": "4.5.15-1",
"description": "auto standard tooling",
"main": "bin/index.js",
"keywords": [
"auto",
"autos",
"standard tooling"
],
"repository": "[email protected]:aotuzuche/autos.git",
"author": "shaodahong",
"license": "MIT",
"bin": {
"autos": "bin/index.js"
},
"scripts": {
"commit": "git-cz",
"version": "yarn changelog && git add CHANGELOG.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "cd ./example && yarn && node ../bin/index.js build",
"lint": "eslint . --ext .js",
"prettier": "prettier -c --write '**/*'",
"prepublishOnly": "yarn lint && yarn test && np --no-cleanup --yolo --no-publish"
},
"husky": {
"hooks": {
"commit-msg": "node scripts/verify-commit-msg.js",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"files": [
"bin"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@babel/core": "^7.12.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"address": "^1.1.2",
"autoprefixer": "^10.0.2",
"babel-loader": "^8.2.1",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"chalk": "^4.1.0",
"cliui": "^7.0.4",
"commander": "^7.0.0",
"crypto-browserify": "^3.12.0",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.2.0",
"deepmerge": "^4.2.2",
"download-git-repo": "^3.0.2",
"ejs": "^3.1.5",
"eslint-loader": "^4.0.2",
"execa": "^5.0.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.0.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^9.0.1",
"hash-sum": "^2.0.0",
"html-webpack-plugin": "^5.0.0",
"inquirer": "^7.3.3",
"latest-version": "^5.1.0",
"metalsmith": "^2.3.0",
"mini-css-extract-plugin": "^1.3.1",
"ora": "^5.1.0",
"portfinder": "^1.0.28",
"postcss": "^8.1.7",
"postcss-loader": "^5.0.0",
"react-dev-utils": "^11.0.0",
"react-error-overlay": "^6.0.8",
"react-refresh": "^0.9.0",
"readline": "^1.3.0",
"rimraf": "^3.0.2",
"sass": "^1.29.0",
"sass-loader": "^11.0.1",
"source-map-url": "^0.4.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"thread-loader": "^3.0.1",
"ts-loader": "^8.0.11",
"url-loader": "^4.1.1",
"webpack": "^5.39.1",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "4.0.0-beta.2",
"webpack-merge": "^5.4.0"
},
"engines": {
"node": ">=10.16.0"
},
"devDependencies": {
"commitizen": "^4.1.2",
"conventional-changelog": "^3.1.23",
"conventional-changelog-cli": "^2.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"git-cz": "^4.7.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"np": "^7.0.0",
"prettier": "^2.1.1",
"typescript": "^4.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}