-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 982 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 982 Bytes
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": "hyacinth",
"description": "hyacinth electron app",
"version": "1.0.0",
"private": true,
"main": "./built/js/backend/main.js",
"scripts": {
"start": "electron .",
"buildstart": "node build.js && ELECTRON_ENABLE_LOGGING=true HYACINTH_DEV=true electron .",
"buildcss": "npx tailwindcss -i ./css/tailwind.css -o ./built/css/style.css",
"test": "node buildtest.js && ELECTRON_RUN_AS_NODE=true NODE_ENV=test electron built/js/testbundle.js",
"elrebuild": "electron-rebuild"
},
"devDependencies": {
"@types/react": "^17.0.14",
"electron": "^19.0.6",
"electron-packager": "^15.4.0",
"electron-rebuild": "^3.2.5",
"esbuild": "^0.14.2",
"tailwindcss": "^2.2.4",
"typescript": "^4.3.5"
},
"dependencies": {
"@heroicons/react": "^1.0.2",
"better-sqlite3": "^7.4.4",
"daikon": "^1.2.42",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.2",
"timsort": "^0.3.0"
}
}