-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.12 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
71
72
73
74
{
"name": "nodets-starter",
"version": "1.0.0",
"description": "Node starter written in TypeScript",
"main": "app.js",
"scripts": {
"serve": "nodemon src/app.ts",
"build": "tsc --project . && tsc-alias -p tsconfig.json",
"test": "NODE_ENV=test jest --detectOpenHandles",
"test:reporter": "cat tests/coverage/lcov.info | coveralls",
"test:view": "open-cli tests/coverage/lcov-report/index.html",
"lint": "eslint src/**/*.ts",
"lint:format": "eslint src/**/*.ts --fix",
"pm2": "pm2 start pm2.config.js --no-daemon"
},
"author": "Peter Kitonga",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.24.0",
"@aws-sdk/node-http-handler": "^3.23.0",
"@aws-sdk/types": "^3.22.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"dotenv-expand": "^5.1.0",
"ejs": "^3.1.6",
"express": "^4.21.1",
"helmet": "^4.6.0",
"joi": "^17.4.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^8.8.4",
"mongoose-autopopulate": "^1.1.0",
"nodemailer": "^6.9.11",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/ejs": "^3.0.7",
"@types/express": "^4.17.12",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^15.12.4",
"@types/nodemailer": "^6.4.2",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"coveralls": "^3.1.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^29.5.0",
"jest-express": "^1.12.0",
"nodemon": "^2.0.22",
"open-cli": "^7.0.0",
"prettier": "^2.3.1",
"supertest": "^6.3.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.4",
"tsconfig-paths": "^4.1.2",
"typescript": "~4.7.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:format"
}
}
}