-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "aetherquest-api",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version",
"start": "node ./dist/bin/www.js",
"watch": "nodemon --exec ts-node src/app.ts",
"build": "tsc",
"dev": "ts-node src/app.ts"
},
"engines": {
"node": "18.19.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/passport-facebook": "^3.0.3",
"@types/passport-google-oauth20": "^2.0.14",
"@types/swagger-ui-express": "^4.1.6",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongoose": "^8.0.3",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^8.0.0",
"swagger-ui-express": "^5.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/node": "^20.10.7",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^4.0.0",
"@types/passport-local": "^1.0.38",
"@types/yamljs": "^0.2.34",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"nodemon": "^3.0.2",
"standard-version": "^9.5.0",
"ts-node": "^10.8.0",
"typescript": "^5.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}