-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
76 lines (76 loc) · 2.39 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
{
"name": "cimonitor",
"version": "4.14.0",
"description": "Monitors all your projects CI automatically",
"repository": "[email protected]:FuturePortal/CIMonitor.git",
"license": "MIT",
"author": {
"name": "Rick van der Staaij",
"url": "https://rick.nu"
},
"contributors": [
{
"name": "GitHub contributors",
"url": "https://github.com/FuturePortal/CIMonitor/graphs/contributors"
}
],
"scripts": {
"start": "node app/backend/server.js",
"start-client": "node app/backend/module-client.js",
"build": "tsc --project ./backend/tsconfig.json && parcel build --dist-dir dashboard --no-source-maps frontend/index.html",
"server": "nodemon --watch backend --exec ts-node backend/server.ts",
"module-client": "nodemon --watch backend --exec ts-node backend/module-client.ts",
"dashboard": "parcel watch --dist-dir dashboard --hmr-port 3031 frontend/index.html",
"cypress-run": "cypress run",
"cypress-open": "cypress open",
"postinstall": "husky install"
},
"dependencies": {
"axios": "^1.5.1",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"firebase-admin": "^10",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2"
},
"devDependencies": {
"@futureportal/parcel-transformer-package-version": "^1.0.0",
"@parcel/packager-raw-url": "2.10.1",
"@parcel/transformer-svg-react": "^2.10.1",
"@parcel/transformer-typescript-tsc": "^2.10.1",
"@parcel/transformer-webmanifest": "2.10.1",
"@types/express": "^4.17.20",
"@types/node": "^20.8.8",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@types/react-redux": "^7.1.28",
"@types/showdown": "^2.0.3",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"@types/styled-components": "^5.1.29",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"buffer": "^6.0.3",
"cypress": "^9.5.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^7.0.0",
"lint-staged": "^15.0.2",
"nodemon": "^3.0.1",
"parcel": "^2.10.1",
"prettier": "^3.0.3",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"showdown": "^2.1.0",
"styled-components": "^6.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}