-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.79 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "venecodollar",
"version": "2.3.7",
"description": "Library to consult the different dollar and euro values and their average in terms of bolivars. The data is obtained from https://monitordolarvenezuela.com/",
"keywords": [
"dollar",
"Venezuela",
"coin",
"Nodejs",
"Typescript"
],
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"dev": "DEBUG=bot* dotenv -- nodemon -e ts -x ts-node src/index.ts",
"devWindows": "@powershell -Command $env:DEBUG='bot*';dotenv -- -- nodemon -e ts -x ts-node src/index.ts",
"deploy-build": "ncc build src/index.ts -o public -m",
"package-build": "rimraf ./build && tsc --project package.tsconfig.json",
"build": "npm run deploy-build & npm run package-build",
"build:start": "npm run deploy-build & npm run package-build & npm run devWindows",
"release": "npm run build && changeset publish",
"update:version": "changeset",
"publish": "npm run release & npm publish",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"force:check": "eslint src/**/*.ts & prettier . --check",
"force:fix": "eslint src/**/*.ts --fix & prettier . --write"
},
"author": "gustavoerivero",
"license": "MIT",
"publicPackage": "https://www.npmjs.com/package/venecodollar",
"homepage": "https://github.com/gustavoerivero/venecodollar#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gustavoerivero/venecodollar.git"
},
"private": false,
"dependencies": {
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.25.7",
"@changesets/cli": "^2.27.9",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.13",
"@types/morgan": "^1.9.4",
"@types/node": "^22.7.5",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vercel/ncc": "^0.36.1",
"babel-jest": "^29.7.0",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.1.4",
"dotenv-cli": "^7.2.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"express": "^4.18.2",
"jest": "^29.7.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.22",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"rimraf": "^5.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}