-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.53 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
{
"name": "pluto",
"private": true,
"version": "0.1.4-alpha",
"scripts": {
"setup": "concurrently 'npm:theme-install' 'npm:gitinfo'",
"watch-mac:themes": "watch 'npm run theme-install' ./resources/themes",
"watch-win:themes": "watch \"npm run theme-install\" ./resources/themes",
"theme-install": "ts-node --esm --project ./scripts/tsconfig.json ./scripts/move-themes.ts",
"gitinfo": "ts-node --esm --project ./scripts/tsconfig.json ./scripts/git-info.ts",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "npm run setup && tauri"
},
"dependencies": {
"@tauri-apps/api": "^1.1.0",
"eventemitter3": "^4.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.15.1",
"react-select": "^5.4.0",
"react-tooltip": "^4.2.21",
"recoil": "^0.7.5",
"style-it": "^2.1.4",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#dev"
},
"devDependencies": {
"@tauri-apps/cli": "^1.1.1",
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.7.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.13.1",
"@types/react-select": "^5.0.1",
"@types/react-tooltip": "^4.2.4",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^2.0.0",
"autoprefixer": "^10.4.10",
"concurrently": "^7.4.0",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"vite": "^3.0.2",
"watch": "^1.0.2"
}
}