-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.28 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
{
"name": "chainpaye-backend",
"version": "1.0.0",
"main": "dist/server.js",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon",
"dev:ts": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"postinstall": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:pbt": "jest --testNamePattern=\"Property:\""
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/mongoose": "^5.11.96",
"axios": "^1.13.5",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"mongoose": "^9.1.5",
"nodemailer": "^8.0.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^29.5.12",
"@types/node": "^25.1.0",
"@types/nodemailer": "^7.0.9",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"fast-check": "^3.15.1",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.1.6",
"nodemon": "^3.1.11",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0"
}
}