forked from athensresearch/athens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.73 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
{
"name": "athens",
"author": "athensresearch",
"version": "1.0.0-beta.22",
"description": "Open-Source Networked Thought",
"main": "resources/main.js",
"build": {
"appId": "com.athensresearch.athens",
"generateUpdatesFilesForAllChannels": true,
"afterSign": "electron-builder-notarize",
"mac": {
"target": [
"dmg",
"zip"
],
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"linux": {
"target": [
"AppImage"
]
},
"publish": {
"provider": "s3",
"bucket": "athens-apps",
"region": "us-east-2"
}
},
"scripts": {
"dev": "shadow-cljs watch main renderer",
"build": "shadow-cljs compile main renderer",
"clean": "rm -rf resources/public/**/*.js && rm -rf target && rm -rf .shadow-cljs",
"dist": "electron-builder -p always"
},
"devDependencies": {
"electron": "^9.2.0",
"electron-builder": "22.8.1",
"electron-builder-notarize": "^1.2.0",
"gh-pages": "^2.2.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-cljs-test": "^0.1.0",
"karma-junit-reporter": "^2.0.1",
"shadow-cljs": "^2.10.21",
"source-map-support": "^0.5.19"
},
"dependencies": {
"@js-joda/core": "1.12.0",
"@js-joda/locale_en-us": "3.1.1",
"@js-joda/timezone": "2.2.0",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"create-react-class": "^15.6.3",
"electron-log": "^4.2.4",
"electron-updater": "^4.3.4",
"highlight.js": "9.15.10",
"marked": "^1.0.0",
"nedb": "^1.8.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-highlight.js": "1.0.7"
}
}