-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.53 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
{
"name": "twitter-archive-browser",
"version": "0.1.0-alpha6",
"description": "A desktop app for browsing your Twitter archive.",
"private": true,
"author": {
"name": "Tiffany Bennett",
"email": "[email protected]",
"url": "https://tiffnix.com"
},
"license": "MPLv2",
"repository": "github:tiffany352/twitter-archive-browser",
"build": {
"appId": "com.tiffnix.twitter-archive-browser",
"productName": "Twitter Archive Browser",
"copyright": "Copyright © 2019 Tiffany Bennett",
"publish": "github",
"mac": {
"category": "public.app-category.utilities"
},
"win": {
"target": [
"nsis",
"portable",
"appx"
]
},
"appx": {
"applicationId": "TwitterArchiveBrowser",
"identityName": "56828TiffanyBennett.TwitterArchiveBrowser",
"publisher": "CN=04522D8E-FC63-48F3-B67D-DFFDD2DA82F9",
"publisherDisplayName": "Tiffany Bennett"
},
"linux": {
"target": [
"AppImage"
]
},
"files": [
"build/**/*",
"assets/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"homepage": "./",
"main": "public/electron.js",
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"npm start\" \"wait-on http://localhost:3000 && electron .\"",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "npm run-script build",
"electron-pack": "electron-builder build",
"electron-local-pack": "electron-builder build --dir",
"publish": "electron-builder build -p always"
},
"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"
]
},
"dependencies": {
"electron-is-dev": "^1.1.0",
"electron-updater": "^4.1.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-scripts": "3.1.2"
},
"devDependencies": {
"@rescripts/cli": "0.0.12",
"@rescripts/rescript-env": "0.0.10",
"bootstrap": "^4.3.1",
"concurrently": "^4.1.2",
"electron": "^6.0.10",
"electron-builder": "^22.2.0",
"html-entities": "^1.2.1",
"jszip": "^3.2.2",
"react-infinite-scroller": "^1.2.4",
"react-router": "^5.1.2",
"typescript": "^3.6.3",
"wait-on": "^3.3.0"
}
}