-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "@h0me/w3ather-web-api",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"private": true,
"bin": {
"w3ather-server": "./bin/w3ather-web-api"
},
"directories": {
"src": "src",
"bin": "bin"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc",
"start:debug": "sls offline",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "mocha -r ts-node/register src/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moonthug/w3ather.git"
},
"author": "Alex Coulcher <alex@polyglot.rodeo> (http://polyglot.rodeo/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/moonthug/w3ather/issues"
},
"homepage": "https://github.com/moonthug/w3ather#readme",
"devDependencies": {
"@types/aws-lambda": "^8.10.75",
"@types/pino": "^6.3.6",
"serverless-offline": "^6.9.0",
"serverless-plugin-typescript": "^1.1.9"
},
"dependencies": {
"@h0me/w3ather-db": "^0.0.9",
"@h0me/w3ather-dto": "^0.0.3",
"pino": "^6.11.2",
"typescript": "^4.2.4"
}
}