-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.3 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
{
"name": "upmoney-api",
"version": "0.0.1",
"description": "This is a TS Implementation of a wrapper for the Up Bank API",
"main": "index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/CyberiumShadow/ts-up-api-wrapper.git",
"author": "CyberiumShadow <cyberiumdev@gmail.com>",
"license": "MIT",
"scripts": {
"commit": "git-cz",
"lint": "eslint src --ext ts --fix",
"update": "yarn upgrade-interactive --latest",
"build": "tsc",
"watch": "tsc -w",
"clean": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"node-fetch": "^3.2.10"
},
"devDependencies": {
"@sapphire/eslint-config": "^4.3.8",
"@sapphire/ts-config": "^3.3.4",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.24.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "yarn@3.2.3"
}