forked from empjs/emp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.75 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
{
"name": "emp-workspace",
"version": "1.0.0",
"description": "emp workspace",
"main": "index.js",
"repository": "https://github.com/efoxTeam/emp.git",
"author": "ken <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest",
"lint": "eslint . --ext js,ts,tsx --fix",
"build": "pnpm build:pkg",
"build:pkg": "pnpm run --filter=@efox/emp build && pnpm run --filter=@efox/* --filter=!@efox/emp --parallel build",
"dev:esm": "pnpm run --filter micro-* --parallel dev",
"start:esm": "pnpm run --filter micro-* --parallel build && pnpm run --filter micro-* --parallel start",
"dev:mf": "pnpm run --filter mf-* --parallel dev",
"start:mf": "pnpm run --filter mf-* --parallel build && pnpm run --filter mf-* --parallel start",
"docs:dev": "vitepress dev offical --host --port 3000",
"docs:build": "vitepress build offical",
"docs:start": "vitepress serve offical --host --port 3000",
"react:umd": "pnpm run --filter mf-* --parallel dev",
"prebuild": "[[ $CI = true ]] && npx pnpm@6 install -r --store=node_modules/.pnpm-store || echo skiping pnpm install",
"prepare": "husky install"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"engines": {
"node": ">=14",
"pnpm": ">=7"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^8.3.6",
"@efox/eslint-config-react": "workspace:^2.3.0",
"cross-env": "^7.0.3",
"flexsearch": "^0.7.31",
"husky": "^8.0.2",
"jest": "^26.6.3",
"lint-staged": "^13.0.3",
"markdown-it": "^13.0.1",
"typescript": "^4.7.3",
"vite": "^4.3.9",
"vitepress": "^1.0.0-beta.1",
"vitepress-plugin-search": "1.0.4-alpha.20 "
}
}