-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.44 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": "air-quality",
"version": "1.0.0",
"description": "This checks the air quality information of a nearest city to GPS coordinates using iqair API",
"main": "server.js",
"scripts": {
"start": "node server.js",
"migrate": "knex migrate:latest",
"migrate:reset": "knex migrate:rollback && npm run migrate",
"test": "cross-env NODE_ENV=test node --experimental-vm-modules node_modules/jest/bin/jest.js --testTimeout=30000 --runInBand --forceExit",
"pretest": "cross-env NODE_ENV=test npm run migrate:reset"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devwalex/air-quality.git"
},
"author": "Usman Salami",
"license": "MIT",
"bugs": {
"url": "https://github.com/devwalex/air-quality/issues"
},
"homepage": "https://github.com/devwalex/air-quality#readme",
"type": "module",
"dependencies": {
"axios": "^0.26.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"helmet": "^3.21.2",
"knex": "^1.0.3",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"node-schedule": "^2.1.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"axios-mock-adapter": "^1.20.0",
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"nodemon": "^2.0.19",
"supertest": "^6.2.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}