-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 865 Bytes
/
package.json
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
{
"name": "gaz-express",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"dev": "nodemon --watch 'src/**/*' -e ts,tsx --exec 'ts-node' ./src/app.ts",
"start": "ts-node ./src/app.ts ",
"test:watch": "jest --watchAll",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"events": "^3.3.0",
"express": "^4.19.2",
"nodemailer": "^6.9.13",
"pino": "^8.20.0",
"pino-http": "^9.0.0",
"pino-pretty": "^11.0.0",
"socket.io": "^4.7.5",
"ts-node": "^10.9.2",
"validatorjs": "^3.22.1"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.7",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}