-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1011 Bytes
/
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
{
"name": "stash-gui",
"productName": "Stash",
"version": "0.0.1",
"private": true,
"main": "resources/main.js",
"scripts": {
"build": "npx shadow-cljs compile main renderer",
"build-css": "postcss src/css/main.css -o resources/public/css/main.css",
"clean": "rm -rf resources/public/js/* && rm -rf target",
"copy-stash-binary": "mkdir -p resources/bin && cp bin/mac/stash resources/bin/",
"dev": "npm run copy-stash-binary && npx shadow-cljs watch main renderer",
"build-release": "npx shadow-cljs release main renderer && npm run build-css",
"start": "npx electron ."
},
"devDependencies": {
"cssnano": "^4.1.10",
"electron": "^13.6.6",
"onchange": "^7.1.0",
"postcss-cli": "^8.3.0",
"shadow-cljs": "2.11.8",
"tailwindcss": "^2.0.1"
},
"dependencies": {
"bencode": "^2.0.1",
"child_process": "^1.0.2",
"create-react-class": "^15.7.0",
"electron-prompt": "^1.6.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}