-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.66 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
{
"name": "con-sazon-mvp",
"version": "1.0.0",
"description": "A culturally mindful meal planning app",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server.js",
"dev": "cross-env NODE_ENV=development nodemon server.js -e css,js,ejs",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"author": "Ashtar Paniagua",
"license": "MIT",
"dependencies": {
"@popperjs/core": "^2.9.2",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"bootstrap": "^5.0.0-beta3",
"bootstrap-icons": "^1.5.0",
"cloudinary": "^1.25.1",
"connect-mongo": "^3.2.0",
"cross-env": "^7.0.3",
"dotenv": "^9.0.2",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.2",
"mathjs": "^9.4.2",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"mongodb": "^3.6.7",
"mongoose": "^5.12.10",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport-oauth2-refresh": "^2.0.2",
"validator": "^13.6.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-wesbos": "^1.0.1",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"nodemon": "^2.0.7",
"prettier": "^2.1.1"
},
"engines": {
"node": ">=16.x",
"npm": ">=6.14.10"
}
}