-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 2.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
{
"name": "vue-techs-logos",
"version": "0.1.25",
"private": true,
"type": "module",
"author": "lucasferreiralimax (https://github.com/lucasferreiralimax)",
"repository": "https://github.com/criar-art/vue-techs-logos",
"bugs": {
"url": "https://github.com/criar-art/vue-techs-logos/issues"
},
"homepage": "https://vue-techs-logos.web.app",
"keywords": [
"vue",
"components",
"svg",
"techs",
"logos",
"ui"
],
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"build:module": "run-p type-check build-only:module && npm run minify && npm run postbuild",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"build-only": "vite build",
"build-only:module": "vite build --config vite-module.config.js",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"minify": "esbuild dist/**/*.js --minify --outdir=dist --allow-overwrite ",
"postbuild": "node scripts/post-build.js",
"publish": "cd dist && npm pub && cd .."
},
"dependencies": {
"jsom": "^1.0.0",
"nucleus-vue": "^0.0.14",
"sass": "^1.83.4",
"vue": "^3.5.13"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.5",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.10",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-typescript": "^14.3.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.6.0",
"cypress": "^13.17.0",
"eslint": "^9.19.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"jsonminify": "^0.4.2",
"npm-run-all": "^4.1.5",
"start-server-and-test": "^2.0.10",
"typescript": "^5.7.3",
"vite": "^5.4.14",
"vite-plugin-style-inject": "^0.0.1",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
}
}