-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 KB
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
{
"name": "node-vue-ordering",
"version": "1.0.0",
"description": "A online food ordering system build by Vue.js, Node.js, and Mongodb.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"production": "env NODE_ENV=production node app.js",
"dev": "env NODE_ENV=development nodemon --inspect=0.0.0.0:9229 app.js",
"dev:host": "env NODE_ENV=development-host nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SHENG-X/node-vue-ordering.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SHENG-X/node-vue-ordering/issues"
},
"homepage": "https://github.com/SHENG-X/node-vue-ordering#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.9",
"mongoose": "^5.9.19",
"multer": "^1.4.2",
"socket.io": "^2.3.0",
"stripe": "^8.75.0",
"vue": "^2.6.11"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}