-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
120 lines (120 loc) · 4.55 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
116
117
118
119
120
{
"name": "lapki-ide",
"version": "0.2.1",
"description": "Statemachine-based IDE for cyber-physical systems",
"main": "./out/main/index.js",
"author": "Kruzhok Association, Polyus-NT",
"homepage": "https://github.com/kruzhok-team/lapki-client",
"scripts": {
"schema:elements": "ts-json-schema-generator -o schema/Elements.json --path ./src/renderer/src/types/diagram.ts --type Elements",
"schema:platforms": "ts-json-schema-generator -o schema/Platforms.json --path ./src/renderer/src/types/platform.ts --type Platforms",
"quicktype:elements": "quicktype ./schema/Elements.json -o qt-temp.ts --src-lang schema --lang ts --prefer-types -t Elements",
"quicktype:platforms": "quicktype ./schema/Platforms.json -o qt-temp.ts --src-lang schema --lang ts --prefer-types -t Platforms",
"quicktype:clean": "rm qt-temp.ts",
"type:elements": "npm run schema:elements && npm run quicktype:elements",
"type:platforms": "npm run schema:platforms && npm run quicktype:platforms",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"test": "vitest",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && npm run bundle:win",
"build:linux": "npm run build && npm run bundle:linux",
"bundle:win": "electron-builder --win --config",
"bundle:linux": "electron-builder --linux --config",
"bundle:mac": "electron-builder --mac --config"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-xml": "^6.0.2",
"@electron-toolkit/preload": "^2.0.0",
"@electron-toolkit/utils": "^1.0.2",
"@floating-ui/react": "^0.26.9",
"@floating-ui/react-dom": "^2.0.8",
"@kruzhok-team/cyberiadaml-js": "^1.1.7",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-switch": "^1.0.3",
"@tweenjs/tween.js": "^23.1.1",
"@types/ws": "^8.5.10",
"@uiw/react-codemirror": "^4.21.21",
"blob-util": "^2.0.2",
"buffer": "^6.0.3",
"compare-versions": "^6.1.0",
"curved-arrows": "^0.1.0",
"electron-settings": "^4.0.2",
"fast-xml-parser": "^4.3.2",
"find-free-port": "^2.0.0",
"fix-path": "^3.0.0",
"isomorphic-ws": "^5.0.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"lookpath": "^1.2.2",
"nanoid": "^4.0.2",
"re-resizable": "^6.9.11",
"react-colorful": "^5.6.1",
"react-complex-tree": "^2.3.2",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.45.1",
"react-merge-refs": "^2.1.1",
"react-modal": "^3.16.1",
"react-popper": "^2.3.0",
"react-resizable-panels": "^1.0.8",
"react-select": "^5.7.4",
"sonner": "^1.4.41",
"tailwind-merge": "^1.13.2",
"ts-json-schema-generator": "^1.2.0",
"vite-plugin-svgr": "^3.2.0",
"ws": "^8.14.2",
"zustand": "^4.4.1"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/notarize": "^1.2.3",
"@types/lodash.debounce": "^4.0.8",
"@types/lodash.throttle": "^4.1.8",
"@types/node": "^18.16.16",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@types/react-modal": "^3.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"electron": "^24.4.1",
"electron-builder": "^24.9.1",
"electron-vite": "^1.0.23",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^22.1.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"quicktype": "^23.0.64",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vitest": "^0.34.6"
},
"resolutions": {
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
}
}