-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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": "api-rest-laudo-nodejs",
"version": "0.1.1",
"type": "module",
"main": "index.js",
"repository": "https://github.com/lucas-moura1/api-rest-laudo-nodejs.git",
"author": "Lucas Moura <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"test": "jest"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.18.1",
"is-base64": "^1.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.1",
"nanoid": "3.3.4",
"winston": "^3.8.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.1",
"@babel/node": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@types/jest": "^29.0.3",
"babel-jest": "^29.0.3",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"jest": "^29.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
}
}