-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
{
"name": "react-techs-logos",
"private": true,
"version": "0.1.23",
"type": "module",
"author": "lucasferreiralimax (https://github.com/lucasferreiralimax)",
"repository": "https://github.com/criar-art/react-techs-logos",
"bugs": {
"url": "https://github.com/criar-art/react-techs-logos/issues"
},
"homepage": "https://react-techs-logos.web.app",
"keywords": [
"react",
"components",
"svg",
"techs",
"logos",
"ui"
],
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "tsc && vite build",
"build:module": "tsc && vite build --config vite-module.config.js && npm run minify && npm run postbuild",
"minify": "esbuild dist/**/*.js --minify --outdir=dist --allow-overwrite ",
"postbuild": "node scripts/post-build.js",
"prod": "npm version patch && npm run build:module && npm publish",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"publish": "cd dist && npm pub && cd .."
},
"dependencies": {
"nucleus-react-js": "^0.0.10",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"jsdom": "^25.0.1",
"jsonminify": "^0.4.2",
"sass": "^1.81.0",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-style-inject": "^0.0.1",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^2.1.5"
}
}