forked from OmarQaqish/cook-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.74 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
{
"name": "backend-capstone",
"version": "1.0.0",
"main": "src/app.js",
"repository": "[email protected]:ReCoded-Org/backend-capstone-template.git",
"author": "Ammar-64",
"license": "MIT",
"scripts": {
"start": "nodemon src/index.js",
"test": "npm run dbrestore && npx jest --runInBand --detectOpenHandles --forceExit",
"dbrestore": "mongorestore --config=./config.yaml --drop mock",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json)\"",
"validate": "yarn format && yarn lint",
"validate-staged": "lint-staged",
"postinstall": "husky install && husky add .husky/pre-commit \"yarn validate-staged\" && husky add .husky/pre-push \"yarn test\""
},
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"dotenv": "^14.2.0",
"ejs": "^3.1.9",
"express": "^4.17.2",
"jsonwebtoken": "^9.0.1",
"modify": "^0.1.2",
"mongoose": "^7.3.2",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"slugify": "^1.6.6",
"swagger-ui-express": "^5.0.0",
"yarn-upgrade-all": "^0.6.1"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.3.3"
}
}