-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
64
65
66
67
68
{
"name": "reactgrapher",
"version": "0.1.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/rChaoz/react-grapher",
"author": "Matei Trandafir (rChaoz)",
"license": "MIT",
"dependencies": {
"@emotion/css": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"react-is": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@jest/globals": "^29.5.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.27",
"@types/react-is": "^17.0.3",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-jest": "^29.5.0",
"babel-plugin-rewire-ts": "^1.4.0",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^2.66.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"scripts": {
"prepublishOnly": "yarn run build",
"build": "rollup -c",
"watch": "rollup -c --watch",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"test": "jest"
},
"packageManager": "[email protected]",
"resolutions": {
"eslint-plugin-react-hooks@^4.6.0": "patch:eslint-plugin-react-hooks@npm%3A4.6.0#./.yarn/patches/eslint-plugin-react-hooks-npm-4.6.0-b429fac07f.patch"
}
}