-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.89 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
{
"name": "react-to-uml",
"version": "1.0.5",
"main": "lib/makePlugins.js",
"keywords": [
"react-components-tree",
"react-to-uml",
"react-uml",
"visualize-react-components"
],
"files": [
"lib"
],
"license": "GPL-3.0-only",
"homepage": "https://github.com/mallchel/react-to-uml",
"author": "[email protected]",
"description": "Visualize your react components tree with uml diagram",
"repository": {
"type": "git",
"url": "https://github.com/mallchel/react-to-uml"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"start": "webpack serve -c ./webpack.dev.ts",
"build": "ts-node ./webpack.prod.ts",
"build-watch": "nodemon --debug --watch",
"test": "node --require tsm --test --watch ./src/**/*-test.ts",
"audit": "ts-node audits/audit.ts",
"build-lib": "tsc --project ./tsconfig.lib.json",
"prepublishOnly": "yarn build-lib"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/plugin-transform-react-jsx-source": "^7.23.3",
"@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.11",
"@types/babel__traverse": "^7.18.5",
"@types/glob": "^8.1.0",
"@types/node": "^20.5.9",
"@types/react": "^18.2.46",
"@types/webpack": "^5.28.2",
"@webpack-cli/serve": "^2.0.5",
"cross-env": "^7.0.3",
"glob": "^10.2.4",
"html-webpack-plugin": "^5.5.3",
"nodemon": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsm": "^2.3.0",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"@babel/traverse": "^7.21.5",
"@babel/types": "^7.23.6",
"babel-loader": "^9.1.3"
}
}