This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 4.19 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
{
"private": true,
"name": "codewaffle",
"version": "0.6.2",
"repository": "[email protected]:florianwiech/codewaffle.git",
"description": "A utility for developers.",
"author": "Florian Wiech <[email protected]>",
"homepage": "https://github.com/florianwiech/codewaffle",
"keywords": [],
"license": "MIT",
"type": "module",
"main": "build/main/main.cjs",
"scripts": {
"postinstall": "cross-env ELECTRON_RUN_AS_NODE=1 electron tools/update-electron-vendors.js",
"prepare": "husky install",
"build": "run-s build:*",
"build:main": "tsc -p tsconfig.main.json --noEmit && vite -c vite.main.config.js build",
"build:preload": "tsc -p tsconfig.preload.json --noEmit && vite -c vite.preload.config.js build",
"build:renderer": "tsc -p tsconfig.renderer.json --noEmit && vite -c vite.renderer.config.js build",
"make": "electron-builder --config electron-builder.config.cjs",
"dist": "run-s build make",
"dev": "node tools/dev.js",
"format": "prettier --write .",
"generate:icons": "electron-icon-builder --input=./static/icon.png --output=./static",
"e2e": "playwright test -c playwright.config.ts",
"e2e:debug": "playwright test -c playwright.config.ts --debug",
"e2e:report": "playwright show-report",
"test": "run-s test:*",
"test:main": "vitest -c vite.main.config.js run --passWithNoTests",
"test:preload": "vitest -c vite.preload.config.js run --passWithNoTests",
"test:renderer": "vitest -c vite.renderer.config.js run --passWithNoTests",
"lint": "eslint packages --format friendly",
"lint:ci": "eslint . --format friendly --max-warnings=0",
"lint:fix": "eslint . --format friendly --fix",
"check:types": "tsc --noEmit",
"check:updates": "npx npm-check-updates",
"auto-update:up": "docker compose -f tools/auto-update/docker-compose.yml up -d",
"auto-update:make": "AWS_ACCESS_KEY_ID=AKIAIOSFODNN7EXAMPLE AWS_SECRET_ACCESS_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY electron-builder --x64 --config electron-builder.auto-update.config.cjs --publish always",
"auto-update:down": "docker compose -f tools/auto-update/docker-compose.yml down",
"verify": "electronegativity -i build"
},
"dependencies": {
"@codemirror/language-data": "6.3.1",
"@primer/primitives": "7.11.11",
"bootstrap-icons": "1.10.5",
"codemirror": "6.0.1",
"electron-squirrel-startup": "1.0.0",
"electron-store": "8.1.0",
"electron-updater": "5.3.0",
"framer-motion": "10.12.16",
"fuse.js": "6.6.2",
"jwt-decode": "3.1.2",
"lodash.debounce": "4.0.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.11.2",
"rxjs": "7.8.1",
"rxjs-spy": "8.0.2",
"styled-components": "5.3.11"
},
"devDependencies": {
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@doyensec/electronegativity": "1.10.3",
"@playwright/test": "1.34.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@testing-library/dom": "9.3.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/lodash.debounce": "4.0.7",
"@types/node": "20.2.5",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"@vitejs/plugin-react": "4.0.0",
"cross-env": "7.0.3",
"electron": "25.0.1",
"electron-builder": "23.6.0",
"electron-devtools-installer": "3.2.0",
"electron-icon-builder": "2.0.1",
"electron-notarize": "1.2.1",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-react-app": "7.0.1",
"eslint-formatter-friendly": "7.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-rxjs": "5.0.3",
"husky": "8.0.3",
"jsdom": "^22.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"rxjs-for-await": "1.0.0",
"semantic-release": "21.0.3",
"ts-node": "10.9.1",
"typescript": "5.1.3",
"vite": "4.3.9",
"vite-plugin-svgr": "3.2.0",
"vitest": "0.31.4"
}
}