-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "quiz-api",
"version": "1.0.0",
"description": "A Rest Api for software programming quiz questions",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node src/server.js",
"dev": "cross-env NODE_ENV=development nodemon src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --ext .js,.jsx .",
"format": "prettier --write .",
"prepare": "husky install | chmod ug+x .husky/*"
},
"author": "Goodnews Sandy",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"eslint-plugin-react": "^7.32.2",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-async-handler": "^1.2.0",
"http-errors": "^2.0.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.4"
},
"lint-staged": {
"*.{ts,tsx,js}": "yarn lint",
"*.css": "yarn format"
}
}