forked from ant-design/ant-design-mini
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.97 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
{
"name": "antd-mini",
"version": "0.0.12",
"scripts": {
"dev": "minidev dev --no-source-map",
"dev:site": "dumi dev",
"build": "npm run build:component && npm run build:site",
"build:component": "NODE_ENV=production node scripts/compile.js",
"build:component:rpx": "NODE_ENV=production node scripts/compile.js --rpx",
"build:site": "dumi build",
"build:demo": "minidev build --output=$PWD/dist --typescript --less --no-source-map",
"deploy:docs": "npm run build:site && echo 'mini.ant.design' > ./docs-dist/CNAME && gh-pages -d docs-dist",
"lint:code": "eslint \"demo/pages/**/*.js\" \"scripts/*.js\" \"src/**/*.ts\"",
"lint:code:fix": "eslint \"demo/pages/**/*.js\" \"scripts/*.js\" \"src/**/*.ts\" --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepublishOnly": "npm run build:component",
"pub": "node scripts/publish.js",
"test:less": "jest __tests__/less.spec.ts",
"test:markdown": "jest __tests__/markdowns.spec.ts",
"test:axml": "jest __tests__/axml.spec.ts",
"test:ts": "jest __tests__/ts.spec.ts"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommitMsg.js"
},
"lint-staged": {
"*.ts": [
"eslint --ext .ts"
],
"*.js": [
"eslint --ext .js"
]
},
"dependencies": {
"@babel/runtime": "^7.17.2",
"async-validator": "^4.0.7",
"fast-deep-equal": "3.1.3",
"tslib": "^2.3.1"
},
"devDependencies": {
"@babel/code-frame": "^7.0.0",
"@babel/core": "^7.6.4",
"@babel/generator": "^7.0.0",
"@babel/parser": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@babel/traverse": "^7.0.0",
"@babel/types": "^7.0.0",
"@mini-types/alipay": "^1.0.8",
"@types/acorn": "^4.0.6",
"@types/babel__code-frame": "^7.0.0",
"@types/babel__core": "^7.0.0",
"@types/babel__generator": "^7.0.0",
"@types/babel__parser": "^7.0.0",
"@types/babel__traverse": "^7.0.0",
"@types/css-tree": "^1.0.7",
"@types/jest": "^27.4.0",
"@types/less": "^3.0.3",
"@types/marked": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"acorn": "^8.7.0",
"alipay-style": "^0.1.0",
"axios": "^0.24.0",
"chalk": "^4.1.0",
"conventional-changelog-cli": "^2.1.1",
"css-tree": "^2.0.4",
"detect-port": "1.3.0",
"dingtalk-design-cli": "^0.20.2",
"dumi": "^1.1.35",
"dumi-theme-antd-mini": "0.2.0",
"eslint": "^8.4.1",
"eslint-config-ali": "^13.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"fs": "^0.0.1-security",
"gh-pages": "^3.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.0.0",
"gulp-if": "^3.0.0",
"gulp-inject-envs": "^1.0.0",
"gulp-less": "^5.0.0",
"gulp-rename": "^1.2.3",
"gulp-typescript": "^6.0.0-alpha.1",
"inquirer": "^8.2.1",
"jest": "^27.5.1",
"less": "^4.1.2",
"lint-staged": "^10.0.7",
"marked": "^4.0.12",
"monaco-editor-webpack-plugin": "1.9.0",
"minidev": "^1.0.7",
"path": "^0.12.7",
"postcss-less": "^6.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"react": "^16.12.0 || ^17.0.0",
"request": "^2.88.2",
"stylelint": "^14.1.0",
"stylelint-config-standard": "^24.0.0",
"ts-jest": "^27.1.3",
"typescript": "^4.0.0",
"yorkie": "^2.0.0"
},
"files": [
"es"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ant-design/ant-design-mini.git",
"branch": "master",
"platform": "github"
},
"bugs": {
"url": "https://github.com/ant-design/ant-design-mini/issues"
},
"keywords": [
"ant-mini",
"mini-program",
"mini-ali-ui",
"mini-antui",
"alipay"
],
"license": "MIT",
"homepage": "https://github.com/ant-design/ant-design-mini"
}