-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.25 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
{
"name": "mpx-cube-ui",
"version": "1.0.3",
"private": true,
"description": "mpx components library",
"author": "xiaolei <xiaolei@didichuxing.com>",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm --filter './packages/*' build",
"build:website": "pnpm --filter @mpxjs/website-build build",
"coverage": "jest --coverage --bail",
"coverage:build": "npm run build && jest --coverage",
"docs:build": "npm run build:website && mpx-cube-doc build",
"docs:dev": "npm run build:website && mpx-cube-doc dev",
"docs:prod": "npm run example:build && NODE_ENV=production npm run docs:build && cp -r ./example/dist/web ./docs/.vuepress/dist/example",
"example:build": "cd example && npm run build:web",
"example:dev": "cd example && npm run watch:web",
"example:mp:dev": "cd example && npm run watch:mp",
"fix": "eslint --fix --ext .js,.ts,.mpx packages/",
"lint": "eslint --ext .js,.ts,.mpx packages/",
"prepare": "husky install",
"release": "release-it",
"test": "jest --no-cache",
"test:build": "npm run build && jest --bail",
"test:update": "jest --updateSnapshot"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@mpxjs/eslint-config-ts": "^1.0.5",
"@mpxjs/extract-theme-var": "workspace: *",
"@mpxjs/miniprogram-simulate": "^1.4.17",
"@mpxjs/mpx-cube-ui": "workspace: *",
"@mpxjs/mpx-jest": "^0.0.30",
"@mpxjs/website-build": "workspace: *",
"@release-it-plugins/workspaces": "^4.0.0",
"babel-jest": "^27.5.1",
"chalk": "^2.4.2",
"commitizen": "^4.2.4",
"copy": "^0.3.2",
"eslint": "^7.0.0",
"highlight.js": "^11.9.0",
"husky": "^8.0.0",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"lint-staged": "^9.5.0",
"path": "^0.12.7",
"release-it": "^16.2.1",
"shelljs": "^0.8.5",
"stylus-loader": "^3.0.2",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5",
"vue": "^2.6.14",
"vue-demi": "^0.13.11",
"vue-i18n": "^8.27.2",
"vue-i18n-bridge": "^9.2.2",
"vue-server-renderer": "2.0.0",
"webpack": "^5.48.0"
},
"engines": {
"node": ">=16",
"pnpm": ">=8"
}
}