-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "Trunk",
"version": "0.0.5",
"description": "Language learning application",
"productName": "Trunk",
"main": "resources/main.js",
"scripts": {
"dev-cljs": "shadow-cljs watch main renderer",
"dev-electron": "npx electron .",
"build": "shadow-cljs release main renderer && npm run tailwind:prod ",
"postinstall": "npx electron-builder install-app-deps",
"tailwind:prod": "npx tailwindcss -i ./src/tailwind.css -o resources/public/css/site.css --minify",
"clean": "rm -rf resources/public/js/* && rm -rf target",
"pack": "npx electron-builder --dir",
"dist": "DEBUG=electron-builder electron-builder",
"dist-local": "yarn build && DEBUG=electron-builder electron-builder",
"rebuild": "electron-rebuild -f -w better-sqlite3",
"test": "shadow-cljs compile test && node out/node-tests.js"
},
"author": {
"name" : "The Ice Shelf",
"email" : "[email protected]",
"url" : "https://theiceshelf.com"
},
"build": {
"appId": "com.theiceshelf.trunk",
"asar": false,
"mac": {
"category": "trunk.theiceshelf"
},
"linux": {
"target": ["deb"]
},
"files": [
"!.lsp",
"!.shadow-cljs/**/*",
"!resources/publicjs/cljs-runtime/**/*"
],
"publish": {
"provider": "github"
}
},
"resolutions": {
"ansi-regex": "5.0.1"
},
"devDependencies": {
"autoprefixer": "^10.3.1",
"concurrently": "^6.2.0",
"cssnano": "^5.0.7",
"electron": "^13.1.7",
"electron-builder": "^22.13.1",
"postcss-cli": "^8.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"shadow-cljs": "^2.15.2",
"tailwindcss": "^2.2.7"
},
"dependencies": {
"better-sqlite3": "^7.4.3",
"highlight.js": "10.7.1",
"ws": "^7.5.5"
}
}