-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.98 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.98 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
91
92
93
94
95
96
97
98
99
{
"name": "error-logger-viewer",
"author": "Ecaterina Sevciuc",
"license": "MIT",
"description": "Error logger viewer application with backend server",
"homepage": "https://kate8382.github.io/error-logger-viewer",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"install:all": "npm install",
"build:types": "tsc -p tsconfig.types.json",
"build:backend": "npm run build:types && tsc -p backend/tsconfig.json",
"build:frontend": "npm run build:types && webpack --config webpack.config.cjs --mode production",
"dev:backend": "nodemon --watch backend/src --ext ts --exec \"npm run build:backend && node backend/dist/server.js\"",
"dev:frontend": "webpack serve --config webpack.config.cjs --mode development",
"watch:frontend": "webpack --config webpack.config.cjs --watch",
"serve:dist:frontend": "http-server frontend/dist -p 8080 -c-1",
"start:backend": "node backend/dist/server.js",
"start:frontend": "webpack serve --config webpack.config.cjs --open",
"start:all": "npm run build:backend && concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"test": "jest --runInBand",
"test:frontend": "jest --selectProjects frontend --runInBand",
"test:backend": "jest --selectProjects backend --runInBand",
"test:e2e": "cypress run --config-file tests/e2e/cypress.config.ts",
"test:e2e:open": "cypress open --config-file tests/e2e/cypress.config.ts",
"test:coverage:frontend": "npm run build:types && jest --selectProjects frontend --coverage",
"test:coverage:backend": "npm run build:backend && jest --selectProjects backend --coverage",
"coverage:all": "jest --coverage --coverageDirectory=coverage",
"lint:all": "concurrently \"npm run lint:frontend\" \"npm run lint:backend\"",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend": "cd backend && npm run lint",
"ts:check": "node node_modules/typescript/bin/tsc -p frontend/tsconfig.json --noEmit && node node_modules/typescript/bin/tsc -p backend/tsconfig.json --noEmit",
"ts:check:unit": "node node_modules/typescript/bin/tsc -p tsconfig.tests.json --noEmit",
"ts:check:e2e": "node node_modules/typescript/bin/tsc -p tests/e2e/tsconfig.json --noEmit",
"start": "npm run build:backend && node backend/dist/server.js"
},
"dependencies": {
"chart.js": "^4.5.0",
"core-js": "^3.44.0",
"cors": "^2.8.5",
"express": "^5.2.1",
"lowdb": "^7.0.1",
"redom": "^4.3.0",
"regenerator-runtime": "^0.14.1",
"uuid": "^14.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@babel/preset-typescript": "^7.28.5",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.8",
"@eslint/js": "^9.29.0",
"@types/cors": "^2.8.19",
"@types/cypress": "^1.1.6",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^20.4.2",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.0",
"concurrently": "^7.6.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.2",
"cypress": "^15.0.0",
"esbuild": "^0.27.2",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.2.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"mini-css-extract-plugin": "^2.9.2",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"sass": "^1.89.2",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"supertest": "^7.2.2",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.0",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"overrides": {
"test-exclude": {
"glob": "^10.5.0"
},
"glob": "^10.5.0",
"path-to-regexp": "^8.4.2",
"rimraf": "^4.0.0"
}
}