-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.83 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
64
65
66
67
{
"name": "graphite-desktop",
"version": "0.5.4",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"dev:native": "tauri dev",
"build": "next build",
"start": "npx serve@latest out",
"start:native-unix": "./.exec/exec-bundle-unix.sh",
"start:native-unix-debug": "./.exec/exec-debug-bundle-unix.sh",
"start:native-win": "./.exec/exec-bundle-unix.sh",
"start:native-win-debug": "./.exec/exec-debug-bundle-unix.sh",
"tauri": "tauri",
"prettier": "prettier --write ./src/**/*.{ts,tsx,css}",
"fix:version-mismatch": "node ./.fix-versions.cjs",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@tauri-apps/api": "^1.5.1",
"million": "^2.6.4",
"next": "14.0.3",
"react": "^18.2.0",
"react-animated-cursor": "^2.11.2",
"react-dom": "^18.2.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tauri-apps/cli": "^1.5.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.10.0",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"autoprefixer": "^10.4.16",
"clsx": "^2.0.0",
"cssnano": "^6.0.1",
"eslint": "^8.54.0",
"eslint-config-next": "14.0.3",
"husky": "^8.0.3",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.1",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.2"
},
"release": {
"branches": [
"main",
"next"
]
},
"repository": {
"type": "git",
"url": "https://github.com/GlitchTech-Developments/GraphiteDesktop.git"
},
"volta": {
"node": "20.10.0"
}
}