-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "pro-test-rest-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "14.x",
"npm": "6.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=production node ./src/server.js",
"start:dev": "cross-env NODE_ENV=development nodemon ./src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnnaSobchenko/pro-test-rest-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AnnaSobchenko/pro-test-rest-api/issues"
},
"homepage": "https://github.com/AnnaSobchenko/pro-test-rest-api#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.16.0",
"express": "^4.18.1",
"http-errors": "^2.0.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.5",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.16",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0",
"uuid": "^8.3.2"
}
}