forked from HuolalaTech/page-spy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
{
"private": true,
"workspaces": [
"packages/page-spy*",
"!packages/page-spy-harmony"
],
"scripts": {
"test": "jest --silent",
"jest": "jest",
"coverage": "jest --silent --coverage",
"lint": "eslint --ext .js,.ts ./packages",
"lint:fix": "eslint --ext .js,.ts --fix ./package",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,md,json}'",
"typecheck": "tsc --noEmit",
"preversion": "yarn run test",
"prepublishOnly": "lerna run --scope '@huolala-tech/page-spy-*' build",
"release:major": "lerna publish major --yes",
"release:minor": "lerna publish minor --yes",
"release:patch": "lerna publish patch --yes",
"release:beta": "lerna publish prerelease --dist-tag beta --yes"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,less,md,json}": [
"prettier --write"
]
},
"dependencies": {},
"devDependencies": {
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"@types/jsdom": "^21.1.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"events": "^3.3.0",
"express": "^4.18.2",
"fake-indexeddb": "^5.0.2",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-websocket-mock": "^2.4.0",
"jsdom": "^23.2.0",
"lerna": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"whatwg-fetch": "^3.6.2",
"yorkie": "^2.0.0"
}
}