-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.8 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
{
"name": "life360-desktop",
"version": "1.1.0",
"description": "Life360 Desktop App",
"main": "electron/main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"cross-env BROWSER=none webpack serve --mode development\" \"wait-on http://localhost:8080 && cross-env ELECTRON_START_URL=http://localhost:8080 electron .\"",
"build": "webpack --mode production",
"electron-dev": "cross-env ELECTRON_START_URL=http://localhost:8080 electron .",
"dist": "electron-builder"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.7",
"autoprefixer": "^10.3.1",
"getmac": "^5.20.0",
"leaflet": "^1.9.4",
"postcss": "^8.3.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.5",
"react-redux": "^7.2.9",
"redux": "^4.2.1",
"tailwindcss": "^2.2.7"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"electron": "^13.1.7",
"electron-builder": "^22.14.13",
"html-webpack-plugin": "^5.3.2",
"style-loader": "^3.2.1",
"wait-on": "^6.0.0",
"webpack": "^5.47.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0"
},
"build": {
"appId": "com.redbaron2k7.life360",
"productName": "Life360 Desktop",
"directories": {
"buildResources": "build",
"output": "dist"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility",
"maintainer": "[email protected]",
"icon": "build/icon.png"
}
}
}