-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "digita-webshop-backend",
"version": "1.0.0",
"description": "Setup: - run ```npm i && npm start``` for both client and server side to start the app",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "export DEBUG=app:main,app:start:db,app:start:logging && nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digita-webshop/digita-webshop-backend.git"
},
"keywords": [],
"author": "Amirhossein Malekian",
"license": "ISC",
"bugs": {
"url": "https://github.com/digita-webshop/digita-webshop-backend/issues"
},
"homepage": "https://github.com/digita-webshop/digita-webshop-backend#readme",
"dependencies": {
"auto-bind": "^4.0.0",
"bcrypt": "^5.0.1",
"config": "^3.3.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.4.4",
"multer": "^1.4.5-lts.1",
"swagger-ui-express": "^4.6.2",
"uuid": "^8.3.2",
"winston": "^3.8.1",
"yaml": "^2.2.1"
},
"devDependencies": {
"debug": "^4.3.4",
"nodemon": "^2.0.19"
}
}