forked from bgbaroo/learnhub-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.23 KB
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
{
"name": "learnhub-api",
"version": "1.0.0",
"description": "Rewrite of https://github.com/thinc-org/react-sharing-session-api-2022",
"main": "dist/index.js",
"scripts": {
"test": "npx jest --collectCoverage",
"dev": "ts-node-dev src/index.ts",
"prisma": "npx prisma generate --schema ./src/data/sources/postgres/prisma/schema.prisma",
"migrate": "npx prisma migrate dev --schema ./src/data/sources/postgres/prisma/schema.prisma",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artworkk/learnhub-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/artworkk/learnhub-api/issues"
},
"homepage": "https://github.com/artworkk/learnhub-api#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.1",
"jest": "^29.5.0",
"prisma": "^4.15.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@prisma/client": "4.15.0",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0"
}
}