-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.33 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": "mysic-api",
"version": "1.0.0",
"description": "API for mysic web and mobile app",
"main": "server.js",
"type": "module",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"clean": "rm -rf build && mkdir build",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix",
"start": "node server.js",
"dev": "nodemon server.js",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)",
"prepare": "husky install"
},
"authors": "Amos Kibet, Peter Tepela",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mogoose": "^0.0.1-security",
"mongoose": "^6.5.1",
"mongoose-unique-validator": "^3.1.0",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"nodemailer": "^6.7.8",
"process": "latest",
"redis": "^4.3.1",
"supertest": "^6.3.0",
"update": "^0.4.2"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.0",
"husky": "^8.0.1",
"jest": "^29.1.2",
"mockingoose": "^2.15.2",
"nodemon": "^2.0.20",
"winston": "^3.8.2"
}
}