-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 866 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 866 Bytes
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
{
"name": "mini-devops-workshop",
"version": "1.0.0",
"description": "Api for workshop mini-devops",
"main": "src/server.ts",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon",
"test": "jest",
"build": "rimraf ./dist && tsc",
"production": "rimraf ./dist && tsc"
},
"keywords": ["devops", "workshop", "mini-devops", "typescript", "jest", "docker"],
"author": "JosafatJimenezB",
"license": "MIT",
"packageManager": "pnpm@10.4.1",
"dependencies": {
"express": "^5.1.0",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.0",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"supertest": "^7.1.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}