-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "adeya-sdk",
"private": true,
"license": "Apache-2.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/credebl/adeya-sdk"
},
"scripts": {
"lint": "eslint .",
"test": "jest",
"check-types": "pnpm -r check-types",
"check-format": "pnpm prettier --list-different",
"build": "pnpm -r build",
"clean": "pnpm -r clean",
"prettier": "prettier .",
"format": "pnpm prettier --write",
"validate": "pnpm lint && pnpm check-types && pnpm check-format"
},
"devDependencies": {
"@pnpm/eslint-config": "^1.1.0",
"@types/eslint": "^8.44.3",
"@types/jest": "^29.5.5",
"@types/node": "^20.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"release-it": "^16.2.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.5.2"
},
"engines": {
"node": ">= 18"
}
}