-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
115 lines (115 loc) · 3.87 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
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "promptmixer-app",
"productName": "PromptMixer",
"version": "0.2.7",
"repository": {
"type": "git",
"url": "https://github.com/PromptMixerDev/prompt-mixer-releases"
},
"description": "Prompt Mixer App",
"type": "module",
"main": "main.js",
"scripts": {
"start": "npm-run-all --parallel react-start electron-start",
"build:mac": "npm-run-all react-build electron-build:mac",
"build:win": "npm-run-all react-build electron-build:win",
"build:linux": "npm-run-all react-build electron-build:linux",
"lint": "eslint \"./src/**/*.ts\" \"./src/**/*.tsx\" --max-warnings 0",
"lint:fix": "yarn run lint --fix",
"test": "cross-env NODE_ENV=test wdio run ./tests/wdio.conf.ts",
"clean": "rm -rf out/* dist/*",
"release": "npm-run-all build electron-build",
"electron-start": "wait-on tcp:3000 && electron .",
"react-start": "react-scripts start",
"react-build": "cross-env PUBLIC_URL=./ react-scripts build",
"electron-build": "electron-builder",
"electron-build:mac": "electron-builder --config builder-configs/electron-builder.mac.cjs",
"electron-build:win": "electron-builder --config builder-configs/electron-builder.win.cjs",
"electron-build:linux": "electron-builder --config builder-configs/electron-builder.linux.cjs",
"format": "prettier --write \"(src|tests)/**/*.+(js|jsx|ts|tsx|css|json|md)\"",
"format:check": "prettier --check \"(src|tests)/**/*.+(js|jsx|ts|tsx|css|json|md)\""
},
"keywords": [],
"author": {
"name": "Prompt Mixer LLC",
"email": "[email protected]"
},
"license": "UNLICENSED",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@electron/notarize": "^2.4.0",
"@types/draft-js": "^0.11.17",
"@types/electron": "^1.6.10",
"@types/lodash": "^4.17.7",
"@types/papaparse": "^5.3.14",
"@types/prismjs": "^1.26.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-table": "^7.7.20",
"@types/react-virtualized": "^9.21.29",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"@wdio/cli": "8.32.4",
"@wdio/cucumber-framework": "8.32.4",
"@wdio/local-runner": "9.2.15",
"@wdio/spec-reporter": "8.32.4",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^31.3.1",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.35.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react-scripts": "^5.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"wait-on": "^8.0.1",
"wdio-electron-service": "6.3.2"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.7",
"classnames": "^2.5.1",
"dotenv": "^16.4.5",
"draft-js": "^0.11.7",
"electron-is-dev": "^3.0.1",
"electron-notarize": "^1.2.2",
"electron-updater": "^6.2.1",
"flexlayout-react": "^0.7.15",
"idb": "^8.0.0",
"js-tiktoken": "^1.0.15",
"lodash": "^4.17.21",
"papaparse": "^5.4.1",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.2",
"react-table": "^7.8.0",
"react-virtualized": "^9.22.5",
"remark-gfm": "^4.0.0",
"uuidv4": "^6.2.13"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}