-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
{
"name": "learning-path-api",
"version": "1.0.0",
"description": "api of learning path app",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"prod":"npx tsc && node dist/index.js",
"start": "nodemon",
"seeder": "npx ts-node src/utils/seeder.ts",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shadmanhere/learning-path-api.git"
},
"keywords": [],
"author": "Shadman Ali",
"bugs": {
"url": "https://github.com/shadmanhere/learning-path-api/issues"
},
"homepage": "https://github.com/shadmanhere/learning-path-api#readme",
"dependencies": {
"@prisma/client": "^4.8.0",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/nodemailer": "^6.4.7",
"axios": "^1.2.1",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.8.0",
"prisma-field-encryption": "^1.4.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.14",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"prisma": "^4.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}