-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
{
"name": "boiler.js",
"version": "0.0.1",
"description": "A boilerplate library and setup program.",
"main": "main.js",
"homepage": "./",
"scripts": {
"start": "electron .",
"react": "react-scripts start",
"express": "cd backend-database && nodemon index.js",
"build": "npx react-scripts build",
"develop": "npx react-scripts start",
"try": "npm run build && npm run start"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^11.0.3"
},
"dependencies": {
"@material-ui/core": "^4.11.1",
"@material-ui/icons": "^4.9.1",
"component-emitter": "^1.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"gridfs-stream": "^1.1.1",
"material-ui": "^0.20.2",
"mongodb": "^3.6.3",
"mongoose": "^5.10.15",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.2.0",
"node": "^15.2.1",
"notistack": "^1.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.1",
"web-vitals": "^0.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}