forked from open-source-labs/dbSpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.21 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.21 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "dbvisualizer",
"version": "1.0.0",
"description": "Visualizing existing database",
"main": "index.js",
"engines": {
"npm": "6.x",
"node": "16.x"
},
"scripts": {
"test2": "tldr curl",
"test": "jest",
"test:watch": "jest --watch",
"start": "node server/server.js",
"build": "webpack",
"dev": "NODE_ENV=development webpack serve --open & nodemon server/server.js",
"docker-prod": "NODE_ENV=production webpack & NODE_ENV=production node server/server.js",
"heroku-postbuild": "npm install && npm run build"
},
"author": "",
"license": "ISC",
"engines": {
"npm": "6.x",
"node": "16.x"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mantine/core": "^4.2.12",
"@mantine/form": "^4.2.11",
"@mantine/hooks": "^4.2.12",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.6",
"@mui/x-data-grid": "^5.12.3",
"@mui/x-data-grid-generator": "^5.12.3",
"@prezly/react-promise-modal": "^0.2.0",
"@shagital/db-dumper": "^1.0.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/material-ui": "^0.21.12",
"axios": "^0.27.2",
"childprocess": "^2.0.2",
"cookie-session": "^2.0.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"file-saver": "^2.0.5",
"fs": "^0.0.1-security",
"html-to-image": "^1.9.0",
"jest": "^28.1.1",
"node-fetch": "^3.2.6",
"pg": "^8.7.3",
"pg-dump": "^0.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-oauth-popup": "^1.0.5",
"react-query": "^3.39.1",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"react-xarrows": "^2.0.2",
"styled-components": "^5.3.5",
"supertest": "^6.2.4",
"tabler-icons-react": "^1.52.0",
"ts-jest": "^28.0.5"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@types/express-session": "^1.17.4",
"@types/file-saver": "^2.0.5",
"@types/global-npm": "^0.4.1",
"@types/jest": "^28.1.3",
"@types/passport": "^1.0.9",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.25",
"babel-loader": "^8.2.5",
"concurrently": "^7.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.18",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
}
}