-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.35 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
{
"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:dev": "export NODE_ENV=dev && nodemon src/app.js",
"start": "node src/app.js",
"test": "node ./skip-scripts.js || yarn validate && jest --no-cache --runInBand --forceExit --passWithNoTests",
"test:dev": "node ./skip-scripts.js || mocha 'src/**/*.js' --recursive --timeout 60000 --exit",
"lint": "node ./skip-scripts.js || eslint --ignore-path .gitignore .",
"format": "node ./skip-scripts.js || prettier --ignore-path .gitignore --write \"**/*.+(js|json)\"",
"validate": "node ./skip-scripts.js || yarn format && yarn lint",
"validate-staged": "node ./skip-scripts.js || lint-staged",
"doctor": "clinic doctor --autocannon [ / ] -- node ./src/app.js",
"bubble": "clinic bubble --autocannon [ / ] -- node ./src/app.js",
"flame": "clinic flame --autocannon [ / ] -- node ./src/app.js"
},
"dependencies": {
"@elastic/elasticsearch": "^8.0.0",
"bcrypt": "^5.0.1",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"ejs": "^3.1.6",
"encrypt-cookie": "^1.1.5",
"express": "^4.17.2",
"express-jwt": "^6.1.0",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"mockingoose": "^2.15.2",
"mongodb": "^4.3.1",
"mongoose": "^6.1.8",
"nodemailer": "^6.7.2",
"passport": "^0.5.2",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"pino": "^7.6.4",
"pino-pretty": "^7.5.0",
"sinon": "^12.0.1",
"supertest": "^6.2.2",
"swagger-ui-express": "^4.3.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",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.1",
"mocha": "^9.2.0",
"mocha-sinon": "^2.1.2",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}