-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.32 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
{
"name": "price-line.trung.tran.swe",
"version": "0.1.0",
"description": "Display potential gain/loss for an option strike price.",
"keywords": ["price", "stock", "option"],
"homepage": "./",
"bugs": "https://github.com/trung-tran-swe/price-line/issues",
"license": "MIT",
"author": {
"name": "Trung Tran",
"email": "[email protected]",
"url": "https://github.com/trung-tran-swe"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/trung-tran-swe"
},
{
"type": "buy_me_a_coffee",
"url": "https://buymeacoffee.com/trung-tran-swe"
},
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/ttran7977"
}
],
"main": "public/electron.js",
"repository": {
"type": "git",
"url": "github:trung-tran-swe/price-line"
},
"private": true,
"scripts": {
"start": "set BROWSER=none&& react-scripts start",
"build": "react-scripts build",
"start-electron": "set ELECTRON_START_URL=http://localhost:3000 && electron .",
"electron": "concurrently \"npm start\" \"npm run start-electron\""
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.14.0",
"@mui/material": "^6.3.1",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"concurrently": "^9.1.2",
"eslint-config-react-app": "^7.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-scripts": "^5.0.1",
"typescript": "^5.7.3"
},
"devDependencies": {
"electron": "^33.2.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"build": {
"appId": "price-line.trung.tran.swe",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories":{
"buildResources": "assets"
}
}
}