This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "car_order_service",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "Albin Médoc",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "node -r dotenv/config .",
"start:dev": "node -r dotenv/config -r ts-node/register ./src/index.ts",
"dev": "nodemon --watch src -e ts,js --exec \"npm run start:dev\"",
"test": "eslint --ext .ts ./src"
},
"devDependencies": {
"@godisbilen/types": "^1.0.1",
"@types/bcrypt": "^3.0.1",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/googlemaps": "^3.40.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongoose": "^5.7.36",
"@types/mongoose-geojson-schema": "^2.1.4",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"dotenv": "^8.2.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"install": "^0.13.0",
"nodemon": "^2.0.6",
"npm": "^7.11.1",
"prettier": "^2.2.1",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.1.13",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dayjs": "^1.9.3",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.9",
"mongoose-geojson-schema": "^2.1.5",
"validator": "^13.1.17"
}
}