-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.13 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
{
"name": "remax-vant",
"version": "1.2.0",
"description": "yet, remax migrate version with vant-weapp based.",
"keywords": [
"remax",
"vant-weapp"
],
"author": "huang.jian <[email protected]>",
"license": "MIT",
"types": "./packages/index.ts",
"module": "./lib/index.js",
"files": [
"lib",
"packages"
],
"repository": {
"type": "git",
"url": "[email protected]:huang-xiao-jian/remax-vant.git"
},
"scripts": {
"predev": "rm -rf dist",
"dev": "remant bootstrap -f storyboard/app.template.ts",
"precompile": "rm -rf lib",
"compile": "babel packages --out-dir lib --extensions '.ts,.tsx' --copy-files",
"prepublishOnly": "npm run compile"
},
"dependencies": {
"clsx": "^1.1.0",
"date-fns": "^2.15.0",
"lodash.pickby": "^4.6.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/fs-extra": "^9.0.1",
"@types/lodash.pickby": "^4.6.6",
"@types/node": "^14.0.5",
"@types/react": "^16.9.16",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-preset-remax": "^2.6.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.1.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"postcss-nested": "^4.2.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"remax-vant-cli": "^0.8.0",
"semantic-release": "^17.1.1",
"typescript": "^3.7.3"
},
"peerDependencies": {
"react": "^16.13.1",
"remax": "^2.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}