-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.71 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.71 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
{
"name": "screen-capture",
"version": "1.0.0",
"description": "Сервис записи экрана, трансляции и видеозвонков",
"main": "server/dist/server.js",
"scripts": {
"prestart": "npm run build && npm run build:server",
"start": "node server/dist/server.js",
"dev": "npm run build:server && cross-env NODE_ENV=development node server/dist/server.js",
"prod": "npm run build:server && cross-env NODE_ENV=production node server/dist/server.js",
"lint": "npm run lint:server && npm run lint:client",
"lint:server": "eslint .",
"lint:client": "npm --prefix frontend install && npm --prefix frontend run lint",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"build": "npm run build:client",
"build:client": "npm --prefix frontend install && npm --prefix frontend run build",
"dev:client": "npm --prefix frontend run dev -- --host",
"test:server": "vitest --run --config vitest.server.config.ts",
"test:client": "npm --prefix frontend run test",
"test": "npm run test:server && npm run test:client",
"build:server": "tsc -p server/tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"cross-env": "^7.0.3",
"express": "^4.21.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.15.0",
"prettier": "^3.4.2",
"supertest": "^7.1.0",
"vitest": "^2.1.8",
"typescript": "^5.6.3",
"@types/express": "^4.17.21",
"@types/node": "^20.17.6",
"@types/ws": "^8.5.12"
}
}