forked from ravi2krishna/lms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "api",
"version": "1.0.0",
"description": "Konamars LMS API",
"main": "index.js",
"private": "true",
"scripts": {
"lint": "eslint src/",
"start": "prisma migrate deploy && node build/index.js",
"build": "tsc",
"dev": "ts-node-dev --respawn --pretty --transpile-only --exit-child src/index.ts",
"test": "echo \"Error: no test specified\"",
"seed": "ts-node src/seed/index.ts"
},
"repository": {
"type": "git",
"url": "[email protected]:v3/Kona-MarS-LMS/KonaLMS-MERN/konamars-api"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.5.0",
"axios": "^1.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"formidable": "^2.0.1",
"helmet": "^6.0.0",
"http-errors": "^2.0.0",
"morgan": "^1.10.0",
"npm": "^8.19.2",
"prisma": "^4.5.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/formidable": "^2.0.5",
"@types/http-errors": "^1.8.2",
"@types/morgan": "^1.9.3",
"@types/node": "^18.8.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"prettier": "2.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}