-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 1.95 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "zuri_auth_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watchAll --detectOpenHandles",
"lint": "eslint . --ext .ts",
"format": "eslint . --ext .ts --fix",
"start": "tsc && nodemon dist/index.js",
"dev": "tsc && pnpm start",
"clean": "rimraf dist",
"build": "pnpm run clean && tsc",
"serve": "tsc && pm2 start dist/index.js --name zuri_auth_api"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express-session": "^1.17.8",
"@types/jsonwebtoken": "^9.0.3",
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.33.0",
"sequelize-typescript": "^2.1.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.19",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.6",
"@types/passport": "^1.0.14",
"@types/passport-facebook": "^3.0.2",
"@types/passport-github2": "^1.2.7",
"@types/passport-google-oauth20": "^2.0.13",
"@types/swagger-ui-express": "^4.1.5",
"@types/validator": "^13.11.3",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}