-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "2020.1-gaiadex-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "NODE_ENV=test npx jest",
"coverage": "rm -rf coverage/ node_modules/.cache/ && NODE_ENV=test npx jest --collect-coverage",
"lint:js": "npx eslint . --ext .js,.jsx",
"lint:js:fix": "npm run lint:js -- --fix"
},
"lint-staged": {
"src/**/*.js": [
"npx eslint . --fix"
],
"src/*.js": [
"npx eslint . --fix"
],
"__tests__/*.js": [
"npx eslint . --fix"
],
"__tests__/**/*.js": [
"npx eslint . --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/fga-eps-mds/2020.1-GaiaDex-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fga-eps-mds/2020.1-GaiaDex-backend/issues"
},
"homepage": "https://github.com/fga-eps-mds/2020.1-GaiaDex-backend#readme",
"dependencies": {
"axios": "^0.21.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"form-data": "^3.0.0",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"mongodb-memory-server": "^6.9.2",
"mongoose": "^5.10.11",
"morgan": "^1.10.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-module-utils": "^2.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.1",
"jest-environment-node": "^26.6.1",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^10.5.1",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"superagent": "^6.1.0",
"supertest": "^6.0.0"
}
}