-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "population-master",
"version": "1.0.0",
"description": "An location and population management API",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node index.js",
"test": "NODE_ENV=test jest --verbose true --forceExit --detectOpenHandles",
"test:coverage": "NODE_ENV=test jest --verbose true --forceExit --detectOpenHandles --coverage"
},
"repository": {
"type": "git",
"url": "git@git.luolix.top-personal:micahoriaso/smart-sms.git"
},
"jest": {
"testMatch": [
"**/tests/**/*.test.js?(x)"
],
"collectCoverageFrom": [
"src/**/*.{js}",
"!node_modules/",
"!src/index.js",
"!src/app.js"
],
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.5.4",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-validator": "^6.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.4",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"swagger-ui-express": "^4.0.7",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"jest": "^24.8.0"
}
}