-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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
{
"name": "hw-radius",
"version": "0.0.3",
"license": "UNLICENSED",
"author": {
"name": "Arpit Patidar",
"email": "arpit.ptdr@hotmail.com",
"url": "https://arpitpatidar.com"
},
"scripts": {
"prepare": "husky install",
"watch": "tsc -w",
"dev": "cross-env NODE_ENV=dev tsc-watch --onSuccess \"yarn parse:ts\"",
"parse:ts": "tsc-alias -p tsconfig.json && node dist",
"compile": "rm -rf dist && tsc && tsc-alias -p tsconfig.json",
"start": "cross-env NODE_ENV=production node dist",
"lint": "yarn lint:js && yarn lint:prettier",
"lint:js": "eslint --ext \".js,.ts\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"format": "prettier --write --list-different . && yarn lint:js --fix"
},
"dependencies": {
"axios": "^0.26.0",
"cross-env": "^7.0.3",
"date-fns": "^2.28.0",
"dotenv": "^14.2.0",
"radius": "^1.1.4"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.10",
"@types/radius": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"tsc-alias": "^1.5.0",
"tsc-watch": "^4.6.0"
},
"engines": {
"node": ">= 16.6.0"
},
"private": true
}