-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.33 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.33 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
{
"name": "LucidQL",
"version": "0.1.0",
"description": "A developer tool that helps developers migrate to a GraphQL API from an established relational database and allows the user to view and simplify these relations.",
"authors": "Darwin Sinchi, Martin Chiang, Stanley Huang",
"license": "MIT",
"bugs": {
"url": "https://github.com/oslabs-beta/lucidQL/issues"
},
"homepage": "",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "NODE_ENV=test jest --verbose",
"start": "nodemon server/server.js",
"dev:hot": "NODE_ENV=development nodemon ./server/server.js & NODE_ENV=development webpack-dev-server --open --hot --inline --progress --colors --watch --content-base ./"
},
"jest": {
"globalSetup": "./jest-setup.js",
"globalTeardown": "./jest-teardown.js",
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"dependencies": {
"@babel/plugin-transform-async-to-generator": "7.27.1",
"@babel/plugin-transform-runtime": "7.27.3",
"@babel/runtime": "^7.27.3",
"@graphql-tools/schema": "^10.0.23",
"@types/d3": "7.4.3",
"@types/d3-selection-multi": "1.0.14",
"@types/file-saver": "2.0.7",
"@types/recoil": "0.0.9",
"bootstrap": "^5.3.6",
"codemirror": "^5.65.16",
"d3": "^7.9.0",
"d3-selection": "3.0.0",
"d3-selection-multi": "^1.0.1",
"express": "^4.18.2",
"express-graphql": "0.12.0",
"file-saver": "2.0.5",
"focus-trap-react": "11.0.4",
"graphql": "^15.3.0",
"graphql-playground-middleware-express": "1.7.23",
"graphql-playground-react": "^1.7.28",
"jszip": "^3.10.1",
"mysql2": "^3.14.1",
"pg": "^8.16.0",
"pg-hstore": "2.3.4",
"pluralize": "8.0.0",
"react": "^18.2.0",
"react-bootstrap": "^2.10.10",
"react-codemirror2": "8.0.1",
"react-dom": "^18.2.0",
"react-graph-vis": "1.0.7",
"react-router": "7.6.1",
"regenerator-runtime": "0.14.1"
},
"devDependencies": {
"@babel/core": "7.27.3",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.27.2",
"@babel/preset-react": "7.27.1",
"@babel/preset-typescript": "7.27.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"@vitejs/plugin-react": "^4.5.0",
"babel-core": "^6.26.3",
"babel-jest": "^30.0.0-beta.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "5.6.3",
"jest": "^29.7.0",
"jest-puppeteer": "11.0.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"puppeteer": "^19.0.0",
"supertest": "7.1.1",
"ts-loader": "9.5.2",
"typescript": "5.8.3",
"url-loader": "4.1.1",
"vite": "^6.3.5"
}
}