-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"private": true,
"name": "api-example",
"version": "1.0.0",
"description": "An example on how to create and organize your API build with the ExpressJS framework and TypeScript.",
"main": "src/main.ts",
"author": "HalloSouf",
"license": "gpl-3.0",
"repository": {
"url": "git+https://github.com/HalloSouf/api-example.git",
"type": "git"
},
"scripts": {
"dev": "nodemon src/main.ts",
"start": "ts-node src/main.ts",
"build": "tsc --build",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write ."
},
"prisma": {
"seed": "ts-node prisma/seeders/main.ts"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"prisma": "^4.12.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@prisma/client": "^4.12.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^6.1.5",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0"
}
}