-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 877 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
34
35
36
{
"name": "fit-app",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"build": "npx tsc",
"start": "node dist/src/index.js",
"dev": "concurrently \"npm run build --watch\" \"nodemon -q dist/src/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.7",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongodb": "^4.0.7",
"@types/node": "^18.16.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"typescript": "^5.0.4",
"ts-node": "^10.9.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"concurrently": "^8.2.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongodb": "^6.2.0"
}
}