-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.26 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "dialogue-editor-client",
"productName": "Bark Dialogue Editor",
"version": "0.1.1",
"private": true,
"homepage": "./",
"author": "Neil Clarke",
"main": "out/main/main.js",
"extraMetadata": {
"main": "out/main/main.js"
},
"dependencies": {
"@reactflow/minimap": "^11.2.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.20",
"@types/uuid": "^8.3.4",
"eslint-import-resolver-typescript": "^2.5.0",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"jszip": "^3.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.14.4",
"reactflow": "^11.10.0",
"styled-components": "^5.3.3",
"typescript": "^4.5.4",
"uuid": "^8.3.2",
"web-vitals": "^2.1.3",
"write-json-file": "^5.0.0",
"zustand": "^4.0.0-rc.0"
},
"scripts": {
"start:vite": "vite",
"start:electron": "electronmon ./dist/electron/main/main.js\"",
"start": "tsc -p electron && concurrently -k \"cross-env BROWSER=none yarn start:vite\" \"electronmon ./dist/electron/main/main.js\"",
"build:vite": "tsc && vite build",
"build:electron": "tsc -p electron",
"serve": "vite preview",
"release": "standard-version",
"lint:windows": "eslint ./src/**/*.{ts,tsx} --fix",
"lint": "eslint './src/**/*{ts, tsx}'",
"electron:build": "electron-vite build",
"electron:preview": "electron-vite preview",
"build": "tsc && vite build && tsc -p electron && electron-vite build",
"electron:package:mac": "electron-builder --mac --config electron-builder.yml --dir --config.asar=false",
"electron:package:win": "electron-builder --win --config electron-builder.yml --dir --config.asar=false",
"electron:package:linux": "electron-builder --linux --config electron-builder.yml --dir --config.asar=false"
},
"build": {
"extends": null,
"files": [
"build/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"browserslist": {
"production": [
"last 1 electron version"
],
"development": [
"last 1 electron version"
]
},
"devDependencies": {
"@electron-forge/cli": "^7.4.0",
"@types/file-saver": "^2.0.7",
"@types/node": "^18.11.18",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vitejs/plugin-react": "^3.0.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"electromon": "^1.0.10",
"electron": "^31.0.0",
"electron-builder": "^24.0.0",
"electron-packager": "^17.1.2",
"electron-vite": "^2.2.0",
"electronmon": "^2.0.2",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "2.5.1",
"standard-version": "^9.3.2",
"vite": "^4.0.3",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.3",
"wait-on": "^7.0.1"
}
}