-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.56 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "reforge",
"productName": "reforge",
"version": "1.0.4",
"license": "MIT",
"description": "Reforge: a fullstack boilerplate for creating desktop applications with React and SQLite + PrismaORM. With some additionals like Vite, TypeScript, TailwindCSS, Prettier and more... 🚀",
"main": ".vite/build/main.js",
"keywords": [
"reforge",
"electron",
"react",
"sqlite",
"prisma",
"vite",
"typescript",
"tailwindcss",
"prettier",
"eslint",
"husky",
"commitlint",
"lint-staged",
"postcss",
"autoprefixer",
"electron-forge"
],
"author": {
"name": "renatoka"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"pretty": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@electron-forge/cli": "^7.2.0",
"@electron-forge/maker-deb": "^7.2.0",
"@electron-forge/maker-rpm": "^7.2.0",
"@electron-forge/maker-squirrel": "^7.2.0",
"@electron-forge/maker-zip": "^7.2.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.2.0",
"@electron-forge/plugin-fuses": "^7.2.0",
"@electron-forge/plugin-vite": "^7.2.0",
"@electron/fuses": "^1.8.0",
"@swc/core": "^1.5.24",
"@swc/plugin-styled-components": "^2.0.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.19",
"electron": "^30.0.8",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.14.0",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"typescript": "^4.5.4",
"vite": "4.5.3",
"vite-tsconfig-paths": "^4.3.2"
},
"dependencies": {
"@prisma/client": "^5.14.0",
"electron-squirrel-startup": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"vite-plugin-svgr": "^4.2.0"
}
}