-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "api-ts-node",
"version": "1.0.0",
"description": "",
"main": "build/app.js",
"scripts": {
"build": "npx tsc -p .",
"start": "node .",
"dev": "npx nodemon src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"node.js",
"express",
"api",
"typescript"
],
"author": "Eduardo Wallén",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-session": "^1.18.1",
"helmet": "^8.0.0",
"joi": "^17.13.1",
"morgan": "^1.10.0",
"mysql2": "^3.9.8",
"node": "^23.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.3",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/helmet": "^4.0.0",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.2",
"@types/swagger-jsdoc": "^6.0.4",
"node-ts": "^6.0.1",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}