-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.38 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"clean": "lerna run clean --stream && rimraf node_modules",
"lint": "lerna run lint --stream",
"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": "^14.6.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",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.4",
"lerna": "^6.6.1",
"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.24.1",
"typescript": "^5.0.4"
},
"resolutions": {
"@testing-library/dom": "7.26.0"
}
}