-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "mapir-api",
"version": "0.5.7",
"description": "Map IR api package",
"main": "./dist/mapir-api.js",
"repository": {
"type": "git",
"url": "https://github.com/parsaghk/mapir-api"
},
"homepage": "https://github.com/parsaghk/mapir-api",
"keywords": [
"map ir",
"map.ir",
"map"
],
"author": {
"name": "Parsa Ghadimkhani",
"email": "parsa.ghadimkhani@gmail.com"
},
"license": "ISC",
"scripts": {
"tsc:build": "rm -rf ./dist && tsc",
"tsc:check": "tsc --noEmit",
"lint:check": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format:check": "prettier ./src",
"format:fix": "prettier ./src --write",
"test": "vitest"
},
"dependencies": {
"axios": "^1.6.5",
"dotenv": "^16.4.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.2.4",
"qs": "^6.11.2",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
}
}