-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.81 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.81 KB
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
{
"name": "new",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "public/electron.js",
"homepage": "./",
"dependencies": {
"@emotion/core": "10.0.21",
"@testing-library/jest-dom": "4.1.2",
"@testing-library/react": "9.3.0",
"electron-is-dev": "^1.1.0",
"firebase": "6.6.1",
"firebase-tools": "7.6.1",
"lodash": "4.17.15",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-router-dom": "5.1.2",
"react-scripts": "3.2.0",
"react-transition-group": "4.3.0",
"recharts": "1.8.3"
},
"devDependencies": {
"@rescripts/cli": "^0.0.13",
"@rescripts/rescript-env": "^0.0.11",
"concurrently": "^5.0.0",
"electron": "^7.1.1",
"electron-builder": "^22.1.0",
"typescript": "^3.7.2",
"wait-on": "^3.3.0"
},
"scripts": {
"install": "cd functions && yarn",
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"eject": "react-scripts eject",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "yarn build",
"electron-pack": "build -mw",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"firebase": "firebase",
"deploy": "yarn firebase deploy"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"author": {
"name": "Your Name",
"email": "your.email@domain.com",
"url": "https://your-website.com"
},
"build": {
"appId": "com.my-website.my-app",
"productName": "MyApp",
"copyright": "Copyright © 2019 ${author}",
"mac": {
"category": "public.app-category.utilities"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
}
}