-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.23 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
{
"name": "milvus-enterprise",
"version": "v0.1.0",
"private": true,
"description": "milvus",
"author": {
"name": "chenzizhao",
"email": "czz@zilliz.com",
"url": "https://www.milvus.io"
},
"dependencies": {
"@ant-design/dark-theme": "^1.0.3",
"@material-ui/core": "^4.9.3",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.43",
"antd": "^4.0.0",
"axios": "^0.21.2",
"babel-plugin-import": "^1.13.0",
"cropperjs": "^1.5.6",
"customize-cra": "^0.9.1",
"foreman": "^3.0.1",
"i18next": "^19.0.2",
"i18next-browser-languagedetector": "^4.0.1",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"react": "^16.12.0",
"react-app-rewired": "^2.1.5",
"react-dom": "^16.12.0",
"react-file-drop": "^0.2.8",
"react-i18next": "^11.2.7",
"react-icons": "^3.9.0",
"react-masonry-component": "^6.2.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-transition-group": "^4.3.0",
"react-zmage": "^0.8.5-beta.31"
},
"devDependencies": {
"csv-writer": "^1.6.0",
"electron": "^7.1.7",
"electron-builder": "^22.2.0"
},
"homepage": "./",
"main": "electron-starter.js",
"scripts": {
"electron": "ELECTRON_START_URL=http://localhost:3000 electron .",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"linux": "electron-builder --linux",
"mac": "electron-builder --mac",
"win": "electron-builder --win "
},
"build": {
"appId": "milvus",
"directories": {
"output": "electron-app"
},
"linux": {
"icon": "./build/milvus-icon.icns",
"target": [
"deb"
]
},
"mac": {
"icon": "./build/milvus-icon.icns",
"target": "dmg"
},
"win": {
"icon": "./build/milvus-icon.png",
"target": [
{
"target": "nsis"
}
]
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}