-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.08 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "import-json-raw",
"version": "0.0.1",
"description": "Import JSON Raw microservice of WDIAS",
"main": "dist/server.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/wdias/import-json-raw.git"
},
"keywords": [
"WDIAS",
"Import",
"JSON",
"Weather"
],
"author": "Gihan Karunarathne",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wdias/import-json-raw/issues"
},
"homepage": "https://github.com/wdias/import-json-raw#readme",
"dependencies": {
"@mojotech/json-type-validation": "^3.1.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-validator": "^5.3.1",
"mongodb": "^3.2.7",
"request": "^2.88.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.17.0",
"@types/compression": "0.0.36",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.17.0",
"@types/express-validator": "^3.0.0",
"@types/geojson": "^7946.0.7",
"@types/mongodb": "^3.1.28",
"@types/node": "^10.17.5",
"@types/request": "^2.48.1",
"ts-node": "^7.0.1",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
}
}