-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "todo-api",
"version": "1.0.0",
"main": "index.js",
"author": "Johan Sampedro <j.sampedro-ext@cultura.fr>",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch src -e js,ts,json --exec \"ts-node src/index.ts\"",
"build": "tsup src/index.ts --format cjs --clean",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^18.13.0",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.0",
"concurrently": "^7.6.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"tsup": "^6.6.0",
"typescript": "^4.9.5"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.0.0",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.6.0",
"uuid": "^9.0.0"
}
}