-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 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
42
{
"name": "devnotes-api",
"version": "1.0.0",
"description": "Simple REST API for developers to save personal technical notes.",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "jest --runInBand",
"test:watch": "jest --watch"
},
"keywords": [
"express",
"typescript",
"mongodb",
"mongoose",
"notes"
],
"license": "MIT",
"dependencies": {
"@types/swagger-ui-express": "^4.1.8",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"mongoose": "^8.12.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.2"
}
}