-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 KB
/
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
37
38
39
40
41
42
{
"name": "quiz-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client": "npm run serve --prefix client",
"server": "node src/server",
"test": "jest",
"build": "npm run build --prefix client"
},
"author": "mirzabicer-dev",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"concurrently": "^7.2.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"eslint": "^8.16.0",
"express-mongo-sanitize": "^2.2.0",
"helmet": "^5.1.0",
"jest": "^29.5.0",
"mocha": "^10.2.0",
"morgan": "^1.10.0",
"vercel": "^30.2.2"
}
}