-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.94 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
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
67
68
69
70
71
72
73
74
75
{
"name": "geoapi",
"version": "0.4.2",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon --exec yarn dev:start",
"dev:start": "yarn build && yarn start",
"start": "node ./dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "yarn lint --fix",
"test": "jest"
},
"author": "appvinc",
"license": "MIT",
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/hapi": "^20.2.1",
"@hapi/inert": "^7.0.0",
"@hapi/joi": "^17.1.1",
"@hapi/vision": "^7.0.1",
"@notionhq/client": "^2.2.3",
"@types/jest": "^29.4.0",
"@sentry/node": "7.11.1",
"pino": "8.10.0",
"pino-pretty": "9.2.0",
"axios": "^1.3.2",
"class-transformer": "^0.5.1",
"dotenv": "^16.0.3",
"hapi-postgres-connection": "^7.0.0",
"hapi-swagger": "^15.0.0",
"notion-client": "^6.15.8",
"pg": "^8.7.1",
"redoc": "^2.0.0"
},
"devDependencies": {
"@appenin/eslint-config": "^0.0.5",
"@types/hapi__hapi": "^20.0.10",
"@types/node": "^14.14.25",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"prettier": "^2.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.6.2"
},
"description": "",
"nodemonConfig": {
"watch": [
"src",
".env"
],
"ext": "js,json,ts"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/**/*.test.(ts|js)"
]
}
}