-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.37 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
{
"name": "@domoticasw/server",
"version": "0.1.0",
"type": "module",
"description": "DomoticASW server",
"main": "dist/src/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"prestart-prod": "tsc && npm run build-client",
"start-prod": "node .",
"prestart": "tsc && npm run build-client && docker compose -f docker-compose.yaml -f docker-compose.development.yaml up -d --wait",
"start": "cross-env DEV=true nodemon || exit 0",
"poststart": "docker compose -f docker-compose.yaml -f docker-compose.development.yaml stop",
"prestart-clean": "docker compose -f docker-compose.yaml -f docker-compose.development.yaml down --volumes",
"start-clean": "npm run start",
"build-client": "[ -d client/dist ] || npm run rebuild-client",
"rebuild-client": "cd client && npm install && npm run build",
"lint": "eslint",
"commitlint": "commitlint --edit",
"pretest": "tsc && docker compose -f docker-compose.yaml -f docker-compose.testing.yaml up --renew-anon-volumes -d --wait",
"test": "jest",
"posttest": "docker compose -f docker-compose.yaml -f docker-compose.testing.yaml down --volumes",
"tdd": "npm run test -- --coverage false",
"format": "prettier --write src/",
"format-check": "prettier --check src/"
},
"author": "Alessandro Venturini, Corrado Stortini, Marco Raggini, Francesco Carlucci",
"license": "LGPL-3.0-only",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.19.0",
"@types/bcrypt": "^6.0.0",
"@types/connect-history-api-fallback": "^1.5.4",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"cross-env": "^10.0.0",
"eslint": "^9.19.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.6.2",
"semantic-release-export-data": "^1.1.1",
"semantic-release-preconfigured-conventional-commits": "^1.1.122",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
},
"dependencies": {
"bcrypt": "^6.0.0",
"connect-history-api-fallback": "^2.0.0",
"effect": "^3.14.1",
"express": "^5.0.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.12.2",
"socket.io": "^4.8.1",
"uuid": "^11.1.0"
}
}