This repository was archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.5 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "studynon.api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "docker compose -f docker-compose.dev.yml up -d && npx prisma generate && npx prisma migrate dev && nodemon",
"start": "node dist/index.js",
"lint": "npx eslint . --cache",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StudynON/studynon.api.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/StudynON/studynon.api/issues"
},
"homepage": "https://github.com/StudynON/studynon.api#readme",
"dependencies": {
"@prisma/client": "4.10.1",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.14.0",
"@types/node-cache": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"prisma": "^4.10.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}