-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 849 Bytes
/
package.json
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": "todo-typescript",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"npm run start:frontend\" \"npm run start:backend\"",
"start:frontend": "cd frontend && npm run dev",
"start:backend": "nodemon app.ts",
"start": "nodemon app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.2",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.1.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.2.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.2.5",
"concurrently": "^8.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}