-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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": "airvisual-api",
"version": "0.0.1",
"description": "exploring the AirVisual API",
"main": "lib/index.js",
"scripts": {
"build": "npx typescript",
"dev": "npx concurrently \"npm run build\" \"npm run dev:run\"",
"dev:run": "npx nodemon lib/index.js",
"start": "node lib/index.js",
"test": "echo \"Error: no tests yet...\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nerdfiles/airvisual-api.git"
},
"license": "WTFPL",
"bugs": {
"url": "https://github.com/nerdfiles/airvisual-api/issues"
},
"homepage": "https://github.com/nerdfiles/airvisual-api#readme",
"devDependencies": {
"concurrently": "^4.1.1",
"nodemon": "1.19.1",
"typescript": "^3.7.3"
},
"dependencies": {
"@hapi/hapi": "18.3.1",
"@hapi/inert": "5.2.1",
"@hapi/joi": "15.1.0",
"@hapi/vision": "5.5.2",
"@types/mongodb": "3.1.32",
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"got": "^11.0.1",
"hapi-swagger": "10.0.2",
"mongodb": "3.3.0-beta2",
"query-string": "^6.12.1",
"request": "^2.88.2"
}
}