-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.13 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
83
84
85
86
87
88
{
"name": "@bonapata/partes",
"version": "0.4.0",
"description": "Una librería libre de componentes para React, escrita en Typescript.",
"main": "./dist/umd/partes.js",
"browser": "./dist/umd/partes.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist",
"src"
],
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-flow": "^7.25.9",
"@babel/preset-react": "^7.25.9",
"@cypress/webpack-preprocessor": "^6.0.2",
"@microsoft/api-documenter": "^7.25.21",
"@microsoft/api-extractor": "^7.47.11",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"cypress": "^13.15.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-react": "^7.37.2",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.14",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1"
},
"peerDependencies": {
"react": "^17 || ^18",
"react-dom": "^17 || ^18"
},
"scripts": {
"add-hooks": "scripts/add-hooks.sh",
"format": "prettier --write ./",
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"prebuild": "npm run lint",
"build": "rm -rf dist/ && npm run build:esm && npm run build:umd",
"build:esm": "tsc",
"build:umd": "webpack --mode production --config ./webpack.umd.config.js",
"postbuild": "npm run create:styles && npm run create:docs",
"create:styles": "tailwindcss -i ./src/input.css -o ./dist/output.css --minify",
"create:docs": "api-extractor run --local --verbose && api-documenter markdown --input-folder temp --output-folder docs && npm run format",
"analize": "webpack --mode production --config ./webpack.analyzer.config.js",
"pretest": "npm run build",
"serve": "cypress open --component --browser chrome",
"test": "cypress run --component --env CI=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juanmanuelgg/bonapata-partes.git"
},
"keywords": [
"React",
"components",
"library",
"libre"
],
"author": "Juan Manuel González Garzón",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/juanmanuelgg/bonapata-partes/issues"
},
"homepage": "https://github.com/juanmanuelgg/bonapata-partes#readme",
"dependencies": {
"eslint-plugin-prettier": "^5.2.1"
}
}