-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.72 KB
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/*"
],
"scripts": {
"build": "lerna run build --stream",
"clean": "lerna run clean --stream && rimraf node_modules",
"lint": "lerna run lint --stream",
"prepare": "husky",
"test": "lerna run test --stream"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@babel/types": "^7.11.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^9.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.4",
"lerna": "^9.0.0",
"lint-staged": "^15.0.0",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"rollup": "^2.26.3",
"rollup-plugin-analyzer": "^4.0.0",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typedoc": "^0.28.5",
"typescript": "^5.0.4"
},
"resolutions": {
"@testing-library/dom": "7.26.0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix --ignore-path .eslintignore",
"prettier --write --ignore-path .prettierignore"
],
"*.{json,md,yml,yaml,html,css,scss}": [
"prettier --write --ignore-path .prettierignore"
]
}
}