-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.25 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
64
65
66
67
68
69
70
{
"name": "nextjs-electron-boilerplate",
"version": "3.1.0",
"main": "backend/build/main.js",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/DarkGuy10/NextJS-Electron-Boilerplate.git"
},
"author": "DarkGuy10 <HarperBurn@protonmail.ch>",
"license": "MIT",
"scripts": {
"frontend:dev": "next dev frontend",
"frontend:build": "next build frontend",
"frontend:lint": "next lint frontend",
"backend:build": "tsc -p backend && tsc-alias -p ./backend/tsconfig.json",
"backend:lint": "eslint backend",
"lint": "prettier -c . && yarn backend:lint && yarn frontend:lint",
"lint:fix": "prettier -w .",
"boot": "yarn backend:build && electron .",
"start": "concurrently -k \"yarn frontend:dev\" \"wait-on tcp:127.0.0.1:3000 && yarn boot\"",
"pre-build": "yarn frontend:build && yarn backend:build",
"build": "yarn pre-build && electron-builder",
"postinstall": "electron-builder install-app-deps",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"packageManager": "yarn@4.2.2",
"dependencies": {
"electron-is-dev": "^3.0.1",
"electron-log": "^5.1.4",
"electron-store": "^9.0.0",
"electron-updater": "6.1.8",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@chromatic-com/storybook": "1",
"@storybook/addon-essentials": "^8.1.1",
"@storybook/addon-interactions": "^8.1.1",
"@storybook/addon-links": "^8.1.1",
"@storybook/addon-mdx-gfm": "^8.1.1",
"@storybook/addon-onboarding": "^8.1.1",
"@storybook/blocks": "^8.1.1",
"@storybook/nextjs": "^8.1.1",
"@storybook/react": "^8.1.1",
"@storybook/test": "8.1.1",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"concurrently": "^8.2.2",
"electron": "^30.0.5",
"electron-builder": "^24.13.3",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-storybook": "^0.6.15",
"prettier": "^3.2.5",
"storybook": "^8.1.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.4.5",
"wait-on": "^7.2.0"
}
}