-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 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
{
"name": "todo-app",
"version": "1.0.0",
"description": "todo-app first typescript program",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec ts-node src/server.ts",
"build": "tsc",
"lint": "eslint . --fix",
"dev": "nodemon dist/server.js"
},
"author": "Arkadiusz Wasilewski",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@faker-js/faker": "^9.9.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"firebase-admin": "^12.4.0",
"mongodb": "^6.8.1",
"mongoose": "^8.6.1"
}
}