-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 957 Bytes
/
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-tracking",
"version": "1.0.0",
"description": "This is a node js app to order food with tracker with admin panel",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"node",
"npm"
],
"author": "FrustatedCoder",
"license": "ISC",
"dependencies": {
"@stripe/stripe-js": "^1.44.1",
"axios": "^0.27.2",
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^14.2.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-ejs-layouts": "^2.5.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.7",
"multer": "^1.4.5-lts.1",
"stripe": "^11.1.0"
},
"devDependencies": {
"laravel-mix": "^6.0.49",
"nodemon": "^2.0.15"
}
}