-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.3 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.3 KB
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
{
"name": "fastnote",
"private": true,
"version": "1.0.0",
"description": "fastnote: An app leveraging your note experience on desktop. Focus on anytime availability. ",
"type": "module",
"main": "dist-electron/main.js",
"author": "Iriseplos",
"scripts": {
"dev": "npm-run-all --parallel dev:react dev:electron",
"dev:react": "vite",
"dev:electron": "npm run transpile:electron && npm run resource:copy-electron && chcp 65001 && cross-env NODE_ENV=development electron .",
"resource:copy-electron": "cpx ./src/electron/resources/**/* ./dist-electron/resources",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"transpile:electron": "tsc --project src/electron/tsconfig.json",
"dist:mac": "npm run transpile:electron && npm run resource:copy-electron && npm run build && electron-builder --mac --arm64",
"dist:win": "npm run transpile:electron && npm run resource:copy-electron && npm run build && electron-builder --win --x64",
"dist:linux": "npm run transpile:electron && npm run resource:copy-electron && npm run build && electron-builder --linux --arm64"
},
"dependencies": {
"@material/material-color-utilities": "^0.3.0",
"ajv": "^6.12.6",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"framer-motion": "^11.11.11",
"i18next": "^24.2.2",
"i18next-fs-backend": "^2.6.0",
"lodash": "^4.17.21",
"mousetrap": "^1.6.5",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-i18next": "^15.4.1",
"react-material-web": "^2.2.2",
"react-time-picker": "^7.0.0",
"sqlite3": "^5.1.7",
"uuid": "^11.0.2",
"winston": "^3.17.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/i18next-node-fs-backend": "^2.1.5",
"@types/lodash": "^4.17.13",
"@types/mousetrap": "^1.6.15",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"cpx": "^1.5.0",
"electron": "^33.0.2",
"electron-builder": "^25.1.8",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.13",
"globals": "^15.11.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.10.0",
"vite": "^5.4.9"
}
}