-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "food_delivery_service_app",
"version": "1.0.0",
"description": "a web app that have functions to manage the food delivery activities of a restaurant",
"main": "src/index.js",
"nodemonConfig": {
"ext": "js json pug css scss"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --inspect ./src/index.js",
"tailwind": "postcss src/public/styles/tailwind.css -w -o src/public/styles/style.css"
},
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.4.13",
"bcrypt": "^5.1.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"method-override": "^3.0.0",
"minidenticons": "^2.0.0",
"mssql": "^9.1.1",
"mysql": "^2.18.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"pug": "^3.0.2",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}