-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
108 lines (108 loc) · 2.83 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@braintree/desktop",
"version": "0.1.0",
"private": true,
"license": "GPL-3.0-or-later",
"homepage": "./",
"main": "public/electron.js",
"author": {
"email": "[email protected]",
"name": "BrainTree",
"url": "https://github.com/gargakshit/braintree"
},
"build": {
"appId": "tech.akshit.braintree",
"productName": "BrainTree",
"copyright": "Copyright © 2020 Akshit Garg",
"mac": {
"category": "public.app-category.utilities",
"icon": "build/braintree.icns"
},
"win": {
"icon": "build/braintree.ico",
"target": [
{
"target": "msi",
"arch": [
"x64"
]
}
]
},
"files": [
"build/**/*"
],
"directories": {
"buildResources": "build"
}
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"cross-env BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack-win": "yarn build && electron-builder -w",
"electron-pack-mac": "yarn build && electron-builder -m"
},
"dependencies": {
"@craco/craco": "^5.6.4",
"@mapbox/rehype-prism": "^0.5.0",
"crypto-random-string": "^3.3.0",
"custom-electron-titlebar": "^3.2.4",
"d3": "5.16.0",
"electron-acrylic-window": "^0.4.4",
"electron-context-menu": "^2.3.0",
"katex": "^0.12.0",
"mobx": "^5.15.6",
"mobx-react": "^6.3.0",
"node-sass": "^4.14.1",
"prettier": "^2.1.1",
"react": "^16.13.1",
"react-d3-graph": "2.4.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.3",
"reactjs-popup": "^2.0.3",
"rehype-katex": "^4.0.0",
"rehype-stringify": "^8.0.0",
"remark-external-links": "^7.0.0",
"remark-math": "^3.0.1",
"remark-parse": "^8.0.3",
"remark-rehype": "^7.0.0",
"styled-components": "^5.2.0",
"unified": "^9.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/crypto-random-string": "^2.0.0",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/prettier": "^2.1.0",
"@types/react": "^16.9.0",
"@types/react-d3-graph": "^2.3.3",
"@types/react-dom": "^16.9.0",
"@types/styled-components": "^5.1.3",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"electron": "^10.1.1",
"electron-builder": "^22.8.0",
"electron-is-dev": "^1.2.0",
"typescript": "~3.7.2",
"wait-on": "^5.2.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"last 6 chrome version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}