forked from oslabs-beta/QLens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.15 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "QLens",
"version": "1.1.0",
"description": "Open source tool to extract metadata from your MongoDB database to generate GraphQL schemas, resolvers and server setup, enhancing developer's productivity.",
"main": "app/electron.js",
"homepage": "./",
"scripts": {
"prod": "webpack --mode production --config ./webpack.build.config.js && electron --noDevServer .",
"start": "webpack serve --hot --host localhost --config=./webpack.dev.config.js --mode development",
"build": "webpack --config ./webpack.build.config.js --mode production",
"package": "npm run build",
"postpackage": "electron-packager ./ --out=./builds",
"postinstall": "electron-builder install-app-deps",
"pack": "npm run build && electron-builder -w",
"pack-mac": "npm run build && electron-builder -m",
"dist": "electron-builder",
"test": "jest --verbose",
"test:watch": "npm run test -- --watch",
"publish-mac": "npm run build && electron-builder -m --publish always",
"publish-win": "npm run build && electron-builder -w --publish always",
"publish-lin": "npm run build && electron-builder -l --publish always",
"deploy": "npm run build && electron-builder -mwl --publish always"
},
"repository": "github:oslabs-beta/QLens",
"keywords": [],
"author": {
"name": "Judy Tan, Jake Diorio, Steven LaBrie, Cho Yee Win Aung",
"email": "team@qlensapp.com",
"url": "https://qlensapp.com/"
},
"contributors": [
{
"name": "Cho Yee Win Aung",
"email": "choyeewinag@gmail.com",
"url": "https://github.com/choyeewinag/"
},
{
"name": "Judy Tan",
"email": "judytan864@gmail.com",
"url": "https://github.com/Judanator"
},
{
"name": "Jake Diorio",
"email": "jdiorio2393@gmail.com",
"url": "https://github.com/jdiorio2393"
},
{
"name": "Steven LaBrie",
"email": "steven.labrie.arias@outlook.com",
"url": "https://github.com/stevenlabrie"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenlabrie/QLens/issues"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2",
"babili-webpack-plugin": "^0.1.2",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"electron": "^11.3.0",
"electron-builder": "^22.9.1",
"electron-packager": "^15.2.0",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.5",
"nodemon": "^2.0.7",
"resize-observer-polyfill": "^1.5.1",
"style-loader": "^2.0.0",
"use-resize-observer": "^7.0.0",
"webpack": "^5.20.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.3",
"ace-builds": "^1.4.12",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"codemirror": "^5.59.2",
"cors": "^2.8.5",
"d3": "^6.5.0",
"dotenv": "^8.2.0",
"electron-devtools-installer": "^3.1.1",
"electron-fetch": "^1.7.3",
"electron-is-dev": "^1.2.0",
"electron-notarize": "^1.0.0",
"electron-updater": "^4.3.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"extract-mongo-schema": "^0.2.10",
"file-saver": "^2.0.5",
"fix-path": "^3.0.0",
"graphiql": "^1.3.2",
"graphql": "^15.5.0",
"graphql-log": "^0.1.3",
"jest-config": "^26.6.3",
"jest-css-modules": "^2.1.0",
"jszip": "^3.6.0",
"lodash": "^4.17.20",
"lodash.clonedeep": "^4.5.0",
"mongodb": "^3.6.4",
"mongoose": "^5.11.14",
"msw": "^0.26.2",
"pluralize": "^8.0.0",
"react": "^17.0.1",
"react-ace": "^9.3.0",
"react-codemirror2": "^7.2.1",
"react-d3-tree": "^2.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-tabs": "^3.2.0",
"react-tree-graph": "^6.0.0",
"spectron": "^13.0.0",
"svg-url-loader": "^7.1.1",
"wait-on": "^5.2.1"
}
}