-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.84 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
{
"name": "computerized_transcript",
"version": "1.0.0",
"description": "A server application for generating stduent transcript result",
"main": "server.ts",
"author": "ifenna-pascal <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev src/server.ts",
"build": "npm && tsc",
"start": "node dist/server.js",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"devDependencies": {
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.8.1",
"typescript": "*"
},
"dependencies": {
"@typegoose/typegoose": "^10.0.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.15",
"@types/nodemailer": "^6.4.7",
"@types/nodemailer-express-handlebars": "^4.0.2",
"argon2": "^0.30.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"helmet": "^6.0.1",
"http-status-codes": "^2.2.0",
"husky": "^8.0.2",
"json-web-token": "^3.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.1",
"nanoid": "^4.0.0",
"node-fetch": "2.6.1",
"nodemailer": "^6.8.0",
"nodemailer-express-handlebars": "^6.0.0",
"pino": "^8.8.0",
"pino-pretty": "^9.1.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^2.0.0",
"zod": "^3.20.2",
"zod-express-middleware": "^1.4.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}