-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
99 lines (99 loc) · 2.54 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
{
"name": "mongrove",
"version": "1.0.0",
"description": "DevTool for MongoDB test database generation and metrics testing",
"main": "./dist/bundle.js",
"scripts": {
"build": "webpack --config ./webpack.config.js",
"dev": "webpack --config ./webpack.config.js --watch",
"test": "jest",
"start": "electron ./dist/bundle.js --no-sandbox",
"server": "node ./backend/server.js",
"dist": "electron-builder"
},
"build": {
"appId": "com.mongrove.mongrove",
"productName": "Mongrove",
"directories": {
"output": "build"
},
"mac": {
"target": "dmg",
"icon": "Mongrove1.png"
},
"dmg": {
"contents": [
{
"x": "110",
"y": "150"
},
{
"x": "240",
"y": "150",
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "NSIS",
"icon": "Mongrove1.png"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.13.13",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"codemirror": "^5.61.1",
"css-loader": "^5.2.6",
"electron": "^13.1.2",
"electron-builder": "^22.11.7",
"electron-devtools-installer": "^3.2.0",
"electron-react-devtools": "^0.5.3",
"electron-reload": "^1.5.0",
"electron-reloader": "^1.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"html-webpack-plugin": "^5.3.1",
"jest": "^27.0.6",
"mongodb-client-encryption": "^1.2.5",
"node-loader": "^2.0.0",
"react": "^17.0.2",
"react-codemirror2": "^7.2.1",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"regenerator-runtime": "^0.13.7",
"sass": "^1.34.1",
"sass-loader": "^12.1.0",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.3",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"concurrently": "^6.2.0",
"d3": "^7.0.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"mongoose": "^5.12.13"
}
}