-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "tentacle",
"version": "0.1.0",
"description": "Desktop app to query crypto exchange data",
"type": "module",
"scripts": {
"dev": "vite",
"dev:back": "vite-node --config vite.config.back.dev.ts -w backend/index.ts",
"build": "vite build",
"serve": "vite preview",
"tauri": "tauri",
"package": "npm run build && pkg dist/backend.js -C GZip --out-path src-tauri/node-bin && vite-node scripts/move-binaries.ts"
},
"license": "MIT",
"dependencies": {
"@solidjs/router": "0.5.1",
"@tauri-apps/api": "1.2.0",
"birpc": "0.2.3",
"nprogress": "0.2.0",
"solid-js": "1.6.2",
"sqlite3": "5.1.2"
},
"devDependencies": {
"@tauri-apps/cli": "1.2.1",
"@types/node": "18.11.9",
"@types/nprogress": "0.2.0",
"@types/sqlite3": "3.1.8",
"autoprefixer": "10.4.13",
"pkg": "5.8.0",
"postcss": "8.4.19",
"prettier": "2.8.0",
"prettier-plugin-tailwindcss": "0.2.0",
"tailwindcss": "3.2.4",
"typescript": "4.9.3",
"vite": "3.2.4",
"vite-node": "0.25.3",
"vite-plugin-external": "1.2.7",
"vite-plugin-solid": "2.4.0"
}
}