-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.73 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
{
"name": "pixowlgram",
"version": "1.0.0",
"description": "Backend Developer Test",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fischettij/pixowlgram.git"
},
"keywords": [
"node",
"nodejs",
"express",
"sequelize",
"backend"
],
"author": "Julian",
"license": "MIT",
"bugs": {
"url": "https://github.com/fischettij/pixowlgram/issues"
},
"homepage": "https://github.com/fischettij/pixowlgram#readme",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"db:migrate": "sequelize db:migrate",
"test": "jest",
"test:ci": "jest --verbose --coverage",
"lint": "eslint --ext .js ./ src/",
"lint:fix": "eslint --ext .js ./ src/ --fix"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-paginate": "^1.0.2",
"express-routes": "^1.0.0",
"express-validator": "^6.6.1",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"nodemon": "^2.0.6",
"supertest": "^6.0.1",
"sqlite3": "^5.0.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!<rootDir>/node_modules/",
"!<rootDir>/test/**"
]
}
}