-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "adex-common",
"version": "1.0.1",
"description": "Common logic for AdEx backend and frontend",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./dist/types": "./dist/types/index.js"
},
"repository": "[email protected]:AmbireTech/adex-common.git",
"author": "AmbireTech",
"license": "MIT",
"scripts": {
"build": "tsc",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"dependencies": {
"i18n-iso-countries": "^7.11.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"typescript": "^4.7.1"
},
"engines": {
"node": ">=16.20.0 <19",
"yarn": "~1.22",
"npm": "use-yarn"
}
}