-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.41 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.41 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
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
{
"name": "ksqlight",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.6.9",
"@electron/remote": "^2.0.8",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.27.2",
"chart.js": "^3.8.0",
"chartjs-plugin-streaming": "^2.0.0",
"clsx": "^1.2.1",
"concurrently": "^7.2.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"livereload": "^0.9.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"sass": "^1.54.0",
"wait-on": "^6.0.1",
"web-vitals": "^2.1.4"
},
"main": "public/main.js",
"homepage": "./",
"scripts": {
"start": "concurrently -k \"cross-env BROWSER=none npm run reactStart\" \"npm run electron:start\" \"node server/server.js\"",
"reactStart": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron:serve": "concurrently -k \"cross-env BROWSER=none npm run reactStart\" \"npm run electron:start\" \"node server/server.js\"",
"electron:build": "",
"electron:start": "wait-on tcp:3000 && electron .",
"devServer": "nodemon server/server.js",
"dist": "electron-builder"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"chartjs-adapter-moment": "^1.0.0",
"electron": "^20.0.0",
"electron-builder": "^23.3.3",
"moment": "^2.29.4",
"nodemon": "^2.0.19",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.4"
},
"build": {
"appId": "com.ksqlsuite.ksqlight",
"productName": "ksqLight",
"target": "NSIS",
"directories": {
"output": "build",
"buildResources":"resources"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
},
"extends": null
}
}