-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.87 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.87 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
{
"name": "khartes",
"version": "1.0.0",
"description": "",
"main": "/electron/electron.ts",
"scripts": {
"build": "webpack --config ./webpack.config.js",
"start": "concurrently \"npx tsc \" \"nodemon -q ./dist/server/index.js\" \"webpack --config ./webpack.config.js\" \"electron ./dist/electron.js\" \"npm run test\"",
"dev": "concurrently \"webpack --watch --config ./webpack.config.js\" \"wait-on ./dist/electron.js && electronmon ./dist/electron.js\"",
"express-dev": "concurrently \"npx tsc \" \"nodemon -q ./dist/server/index.js\"",
"test": "npx tsc ./server/heartbeat.ts && node ./server/heartbeat.js "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.1.3",
"chart.js": "^3.9.1",
"css-loader": "^6.7.1",
"dotenv": "^16.0.3",
"electron-reload": "^2.0.0-alpha.1",
"electronmon": "^2.0.2",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"node-fetch": "^3.2.10",
"react-chartjs-2": "^4.3.1",
"react-router-dom": "^6.4.2",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"wait-on": "^6.0.1",
"yaml": "^2.1.3"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.3",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"concurrently": "^7.4.0",
"copy-webpack-plugin": "^11.0.0",
"electron": "^21.2.0",
"electron-reloader": "^1.2.3",
"eslint": "^8.26.0",
"eslint-plugin-react": "^7.31.10",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}