forked from JofArnold/convert-react-to-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (55 loc) · 1.56 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
{
"name": "convert-react-to-json",
"version": "0.2.3",
"description": "Converts React JSX to JSON",
"main": "dist/index.js",
"repository": "https://github.com/jofarnold/convert-react-to-json.git",
"author": "Jof Arnold",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest",
"build": "rm -rf dist && yarn tsc -b"
},
"files": [
"README.md",
"dist"
],
"dependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-typescript": "^8.2.3",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"rollup": "^2.53.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/types": "^7.14.8",
"@types/eslint": "^7.28.0",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.1",
"@types/react": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^3.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"ts-node": "^10.1.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"babel-plugin-transform-node-env-inline": "^0.4.3"
}
}