-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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
{
"name": "root",
"private": true,
"description": "Eisberg Labs collection of React Components.",
"workspaces": [
"packages/*",
"docs"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.13",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^13.4.0",
"@types/google.visualization": "^0.0.68",
"@types/jest": "^29.2.3",
"@types/node": "^17.0.12",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"css-loader": "^6.7.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.27.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lerna": "^6.1.0",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.56.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"scripts": {
"docs:dev": "npm --workspace docs run dev",
"docs:build": "npm --workspace docs run build",
"docs:start": "npm --workspace docs run start",
"docs:lint": "npm --workspace docs run lint",
"docs:export": "npm --workspace docs run export"
},
"dependencies": {
"postcss": "^8.4.21",
"rollup-plugin-postcss": "^4.0.2"
}
}