forked from smartlook/smartlook-relay-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "smartlook-relay-proxy",
"description": "Smartlook Relay Proxy",
"license": "MIT",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "eslint ./src --ext .ts && prettier --write \"./src/**/*.ts\"",
"dev": "tsc-watch --onSuccess \"node build/index.js\" | pino-pretty",
"build": "tsc"
},
"homepage": "https://github.com/smartlook/smartlook-relay-proxy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/smartlook/smartlook-relay-proxy.git"
},
"bugs": {
"url": "https://github.com/smartlook/smartlook-relay-proxy/issues"
},
"dependencies": {
"convict": "^6.2.3",
"pino": "^8.4.2",
"undici": "^5.9.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@smartlook/eslint-config-base": "^1.4.0",
"@smartlook/eslint-config-node": "^1.4.0",
"@smartlook/eslint-config-prettier": "^1.4.0",
"@smartlook/eslint-config-typescript": "^1.4.1",
"@smartlook/prettier-config": "^1.4.0",
"@types/convict": "^6.1.1",
"@types/node": "^18.7.9",
"eslint": "^8.22.0",
"husky": "^8.0.1",
"pino-pretty": "^9.0.1",
"prettier": "^2.7.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4"
}
}