forked from web-infra-dev/garfish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.83 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
{
"private": true,
"description": "A powerful micro front-end framework",
"scripts": {
"dev": "pnpm run start --parallel --filter @garfish-dev/*",
"dev:docs": "pnpm run start --filter garfish-docs",
"build": "pnpm run build --parallel --filter @garfish/* --filter garfish",
"build:docs": "pnpm run build --filter garfish-docs",
"build:watch": "cross-env WATCH=true pnpm build",
"test:e2e": "zx scripts/e2e.js",
"test:e2e:prod": "cross-env CI=true zx scripts/e2e.js",
"test:e2e:open": "cross-env TEST_ENV_OPEN=true zx scripts/e2e.js",
"test": "node scripts/unit.js --collect-coverage",
"cy:open": "cypress open",
"cy:run": "cypress run",
"changeset": "npx changeset",
"reset": "pnpm -r exec -- rm -rf node_modules && rm -rf node_modules",
"setup": "cross-env DISABLE_GARFISH_CHECK_INTERNAL=true pnpm install",
"ls-lint": "ls-lint",
"lint": "eslint --ext .ts packages/*/*/src/**",
"reset-gittag": "git tag -l | xargs git tag -d && git fetch --prune",
"format": "prettier --write --parser typescript \"packages/**/*.ts?(x)\"",
"format:js": "prettier --write --parser typescript \"(packages|scripts)/**/*.js\"",
"format:md": "prettier --write \"**/*.md\"",
"release": "node ./scripts/release.js",
"release:canary": "node ./scripts/release.js --canary"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --parser=typescript --write"
],
"*.md": [
"prettier --write"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "bytedance",
"license": "MIT",
"devDependencies": {
"@jsdevtools/version-bump-prompt": "6.1.0",
"@koa/cors": "3.1.0",
"@ls-lint/ls-lint": "1.10.0",
"@testing-library/jest-dom": "^5.16.2",
"@types/jest": "27.0.2",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"axios": "0.24.0",
"babel-polyfill": "6.26.0",
"chalk": "4.1.2",
"codecov": "^3.8.3",
"cross-env": "7.0.3",
"cypress": "^9.5.0",
"dayjs": "^1.10.8",
"esbuild-plugin-replace": "1.0.7",
"eslint": "7.32.0",
"execa": "4.1.0",
"fs-extra": "10.0.0",
"http-server": "13.0.2",
"husky": "7.0.4",
"install": "0.13.0",
"isomorphic-fetch": "^3.0.0",
"jest": "27.3.1",
"jest-fetch-mock": "^3.0.3",
"kill-port": "1.6.1",
"lint-staged": "11.2.6",
"lodash": "4.17.21",
"minimist": "1.2.5",
"pnpm": "^6.32.1",
"prettier": "2.4.1",
"prettier-eslint-cli": "5.0.1",
"rimraf": "3.0.2",
"semver": "^7.3.5",
"ts-jest": "27.0.7",
"tslib": "2.3.1",
"tsup": "5.7.2",
"typescript": "4.4.3",
"wait-on": "6.0.0",
"workspace-tools": "0.16.2",
"zx": "4.2.0"
},
"engines": {
"node": ">=16.10.0"
},
"version": "1.4.1"
}