-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "wechat-menu-manager",
"version": "0.1.0",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
},
"author": "Zhou Qi <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/react": "^16.8.6",
"@types/react-dom": "^16.8.2",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"immutable": "^4.0.0-rc.12",
"lint-staged": "^8.1.5",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-scripts": "^2.1.5",
"typescript": "^3.3.3333"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"description": "通用的微信公众号菜单编辑器",
"repository": {
"type": "git",
"url": "git+https://github.com/HandsomeOne/WeChatMenuManager.git"
},
"bugs": {
"url": "https://github.com/HandsomeOne/WeChatMenuManager/issues"
},
"homepage": "https://github.com/HandsomeOne/WeChatMenuManager#readme",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}