-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "call-verify-api",
"version": "1.0.0",
"description": "A REST api to be consumed by a mobile app, which is somewhat similar to various popular apps which tell you if a number is spam, or allow you to find a person’s name by searching for their phone number",
"main": "server.js",
"author": "",
"license": "ISC",
"scripts": {
"start": "cross-env NODE_ENV=production node --inspect server.js",
"dev": "cross-env NODE_ENV=development nodemon server.js",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"lint:fix-all": "eslint --fix .",
"test": "jest",
"test:unit": "cross-env NODE_ENV=test jest unit",
"test:coverage": "jest --coverage"
},
"dependencies": {
"express": "^4.18.2",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"bcrypt": "^5.1.1",
"mysql2": "^3.6.5",
"sequelize": "^6.35.1"
},
"devDependencies": {
"eslint": "^8.46.0",
"nodemon": "^3.0.1",
"pre-commit": "^1.2.2",
"supertest": "^6.3.3",
"@types/jest": "^29.5.6",
"jest": "^29.6.4"
},
"pre-commit": [
"lint"
]
}