-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
58
59
60
61
62
63
64
65
66
{
"name": "car-management-api",
"version": "1.0.0",
"description": "REST API that can be used to manage car data with authentication features",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node build/index.js",
"dev": "npx nodemon",
"migrate": "npx knex migrate:latest",
"seed": "npx knex seed:run",
"lint": "eslint ./",
"format": "prettier --write ."
},
"keywords": [],
"author": "Hassan Jadi",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"joi": "^17.12.2",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"moment": "^2.30.1",
"multer": "^1.4.5-lts.1",
"objection": "^3.1.3",
"pg": "^8.11.3",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"prettier": "^3.2.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.2",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.6",
"@types/pg": "^8.10.9",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}