-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "vite-plugin-federation",
"private": true,
"workspaces": [
"packages/**"
],
"engines": {
"node": ">=12.0.0"
},
"author": "@originjs",
"license": "MulanPSL2",
"scripts": {
"format": "prettier -w .",
"lint": "eslint packages/*/{src,types}/**",
"lint:fix": "eslint --fix",
"build": "cd packages/lib && yarn build",
"test": "npm-run-all test:unit test:e2e",
"test:unit": "jest --coverage",
"test:e2e": "jest --runInBand --config ./jest.e2e.config.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-plugin-node": "^11.1.0",
"fs-extra": "^10.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"npm-run-all": "^4.1.5",
"playwright-chromium": "^1.14.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"ts-jest": "^27.0.3",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged --concurrent false",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"eslint",
"prettier --write"
]
}
}