-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
86 lines (86 loc) · 2.78 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-reparenting",
"version": "0.6.1",
"description": "The reparenting tools for React",
"main": "dist/react-reparenting.cjs.js",
"module": "dist/react-reparenting.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"test": "jest",
"test:watch": "jest test --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"eslint": "./node_modules/.bin/eslint src/**/*.{js,jsx,ts,tsx} test/**/*.{js,jsx,ts,tsx}",
"prettier": "./node_modules/.bin/prettier --write **/*.{js,jsx,ts,tsx,md,mdx,json}",
"prepublishOnly": "npm run type-check && npm run test && npm run prettier && npm run eslint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Paol-imi/react-reparenting.git"
},
"keywords": [
"react",
"reparenting",
"reparentable",
"portals",
"portal",
"fibers",
"fiber"
],
"author": "Paolo Longo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Paol-imi/react-reparenting/issues"
},
"homepage": "https://paol-imi.github.io/react-reparenting",
"files": [
"/dist"
],
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-replace": "^2.3.4",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.1",
"@types/react-reconciler": "^0.26.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rollup": "2.26.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.5"
},
"dependencies": {
"@babel/runtime": "^7.12.13"
},
"peerDependencies": {
"react": "^16.8.5 || ^17.0.1"
}
}