-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 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
{
"name": "cicd-pipeline-be",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "mocha --import=tsx --no-warnings 'tests/**/*.spec.ts' --timeout 25000 --exit"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"@types/pg": "^8.20.0",
"@types/sinon": "^21.0.0",
"@types/sinon-chai": "^4.0.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"drizzle-kit": "^0.31.10",
"esmock": "^2.7.3",
"jsonwebtoken": "^9.0.3",
"mocha": "^11.7.5",
"sinon": "^21.0.3",
"sinon-chai": "^4.0.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"express": "^5.2.1",
"express-validator": "^7.3.1",
"pg": "^8.20.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3"
}
}