-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.02 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": "men-restfull-api",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "mocha --require @babel/register --recursive --exit --timeout 20000",
"start": "nodemon server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/register": "^7.18.9",
"babel-register": "^6.26.0",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"mocha": "^10.2.0"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cross-env": "^7.0.3",
"dirty-chai": "^2.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.4",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.6.0",
"yamljs": "^0.3.0"
}
}