-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "ufood",
"version": "0.1.0",
"main": "index.js",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "1.20.3",
"cookie-parser": "1.4.7",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "1.18.1",
"jwt-simple": "^0.5.6",
"moment": "^2.27.0",
"mongoose": "^8.0.4",
"passport": "0.7.0",
"passport-local": "1.0.0",
"request": "^2.88.2"
},
"devDependencies": {
"@googlemaps/google-maps-services-js": "^3.1.6",
"husky": "^9.1.7",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.4.2"
},
"scripts": {
"start": "node ./index.js",
"dev": "nodemon ./index.js",
"lint": "prettier --config=.prettierrc \"**/*.*\" --write --ignore-unknown",
"pre-commit": "lint-staged",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/GLO3102/UFood.git"
},
"author": "Vincent Seguin",
"license": "MIT",
"bugs": {
"url": "https://github.com/GLO3102/UFood/issues"
},
"homepage": "https://github.com/GLO3102/UFood",
"lint-staged": {
"**/*.*": "prettier --config=.prettierrc --write --ignore-unknown"
},
"type": "module"
}