-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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
43
44
45
46
{
"name": "quizit-backend",
"version": "1.0.0",
"description": "Backend for quiz it application",
"main": "index.js",
"author": "<[email protected]>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"passport": "^0.5.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.38"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/morgan": "^1.9.3",
"@types/node": "^16.10.2",
"@types/passport": "^1.0.7",
"@types/passport-facebook": "^2.1.11",
"@types/passport-google-oauth20": "^2.0.10",
"cross-env": "^7.0.3",
"faker": "^5.5.3",
"jest": "^27.2.4",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"scripts": {
"dev": "tsnd --respawn src/index.ts",
"test": "cross-env NODE_ENV=test jest --runInBand"
}
}