-
-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "webgal-terre",
"version": "4.5.18",
"private": true,
"scripts": {
"dev": "concurrently \"yarn dev:terre\" \"yarn dev:origine\" \"yarn dev:start-dev-server\"",
"lint": "concurrently \"yarn lint:terre\" \"yarn lint:origine\"",
"nsis-bundle": "makensis ./installer.nsi",
"dev:terre": "cd packages/terre2 && yarn start:debug",
"dev:origine": "cd packages/origine2 && yarn dev",
"dev:start-dev-server": "cd packages/dev-server && node index.js",
"openapi": "cd packages/origine2 && yarn openapi",
"lint:terre": "cd packages/terre2 && yarn lint",
"lint:origine": "cd packages/origine2 && yarn lint"
},
"workspaces": {
"packages": [
"packages/dev-server",
"packages/editor-preview-protocol",
"packages/terre2",
"packages/origine2"
],
"nohoist": [
"**/WebGAL-electron",
"**/WebGAL-electron/**",
"**/electron",
"**/electron/**"
]
},
"devDependencies": {
"concurrently": "^7.2.2",
"iconv-lite": "^0.6.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.22",
"resolutions": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0"
},
"dependencies": {
"@types/react": "^18.0.0"
}
}