-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
100 lines (100 loc) · 2.98 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
{
"name": "into-cps-app",
"productName": "INTO-CPS APP",
"version": "5.0.0",
"description": "User interface for the INTO-CPS Toolchain",
"license": "SEE LICENSE IN <LICENSE.md>",
"repository": {
"type": "git",
"url": "https://github.com/INTO-CPS-Association/into-cps-application.git"
},
"main": "dist/main.js",
"author": {
"name": "INTO-CPS Project",
"email": "[email protected]",
"url": "http://into-cps.au.dk/"
},
"scripts": {
"build": "rimraf release/ && node esbuild.config.mjs && electron-builder --x64",
"build:win": "npm run build && .\\convert-to-msix.bat",
"start": "node esbuild.config.mjs --dev && concurrently \"npm run serve\" \"npm run electron-start\"",
"serve": "serve dist -l 8080 --cors",
"electron-start": "wait-on http://localhost:8080 && npx electron dist/main.js",
"syntax": "npx eslint . --fix",
"clean": "npx rimraf dist monocart-report release pkg test-results test/coverage-reports && npm ci"
},
"build": {
"appId": "org.into-cps-association.into-cps-app",
"copyright": "Copyright © 2021 INTO-CPS Association",
"productName": "INTO-CPS-Application",
"electronVersion": "32.1.2",
"files": [
"**/*",
"dist/**/*"
],
"directories": {
"output": "release",
"buildResources": "buildResources"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "src/resources/into-cps/appicon/into-cps-logo.png.ico"
},
"win": {
"icon": "src/resources/into-cps/appicon/into-cps-logo.png.ico",
"target": ["nsis", "msi", "portable"],
"signAndEditExecutable": false,
"forceCodeSigning": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"msi": {
"oneClick": false
},
"linux": {
"target": [
"AppImage"
],
"icon": "src/resources/into-cps/appicon/into-cps-logo.png"
}
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"del": "^7.1.0",
"monocart-coverage-reports": "^2.11.1",
"playwright": "^1.48.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@playwright/test": "^1.48.2",
"@types/node": "^22.7.5",
"@types/react-dom": "^18.3.1",
"babel-jest": "^29.7.0",
"concurrently": "^9.0.1",
"electron": "^32.1.2",
"electron-builder": "^25.1.7",
"electron-playwright-helpers": "^1.7.1",
"esbuild": "0.24.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"react-test-renderer": "^18.3.1",
"serve": "^14.2.4",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.12.2",
"wait-on": "^8.0.1"
}
}