-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
{
"name": "iqa-backend",
"version": "0.1.0",
"description": "",
"main": "src/index.js",
"engines": {
"node": "^14.0.0"
},
"scripts": {
"start": "node src/server",
"dev": "nodemon ./src/server -q",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0 --ext .js",
"prettier": "prettier --write .",
"prettier:check": "prettier . --check",
"prepare": "husky install",
"test": "jest",
"tdd": "jest --watchAll",
"check": "npm run prettier:check && npm run lint && npm run test",
"ucc": "node src/scripts/updateCommentsCounter.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intocode/iqa-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/intocode/iqa-backend/issues"
},
"homepage": "https://github.com/intocode/iqa-backend#readme",
"dependencies": {
"axios": "^0.24.0",
"cors": "^2.8.5",
"dotenv": "^12.0.3",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.6",
"morgan": "^1.10.0",
"passport": "^0.5.2",
"passport-github2": "^0.1.12"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/jest": "^27.4.0",
"@types/morgan": "^1.9.3",
"@types/passport": "^1.0.7",
"@types/passport-github2": "^1.2.5",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"nodemon": "^2.0.14",
"prettier": "^2.5.1",
"supertest": "^6.2.1"
},
"lint-staged": {
"*.js": [
"npm run prettier",
"npm run lint"
],
"*.{js,css,md}": "prettier --write"
}
}