-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 817 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 817 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
34
35
36
37
{
"name": "api-rest-nodejs",
"version": "0.0.1",
"description": "Base d'une API REST, avec un crud complet.",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "ts-node-dev --respawn --transpile-only src/app.ts"
},
"keywords": [
"api",
"rest",
"nodejs",
"express",
"mongodb",
"mongoose"
],
"author": "Terrade Antoine",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.11.18",
"prettier": "3.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.4.4",
"envsafe": "^2.0.3",
"express": "^4.18.2",
"mongoose": "^8.1.2",
"zod": "^3.22.4"
}
}