-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.26 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
45
46
47
{
"name": "Backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/mia-ajuda/Backend.git",
"author": "LeoSilvaGomes <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js",
"dev": "node server.js",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "npx eslint ./src",
"lint:fix": "npx eslint ./src --fix"
},
"dependencies": {
"@sentry/node": "5.18.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cpf-cnpj-validator": "^1.0.1",
"dotenv": "^8.2.0",
"expo-server-sdk": "^3.5.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"firebase-admin": "^8.10.0",
"jest": "^28.1.3",
"lodash": "^4.17.21",
"mongodb": "^3.5.9",
"mongoose": "^5.9.6",
"node-schedule": "^1.3.2",
"socket.io": "^2.4.0",
"swagger-ui-express": "^4.1.4",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"git-commit-msg-linter": "^3.2.6",
"nodemon": "^2.0.2"
}
}