-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.81 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.81 KB
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
89
90
91
92
93
94
95
96
97
{
"name": "@empathyco/x-archetype",
"version": "1.0.0",
"private": true,
"description": "Starting point to setup a X Components project",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
"homepage": "https://github.com/empathyco/x-archetype",
"scripts": {
"serve": "vite dev --host",
"serve:docker": "VUE_APP_DEVELOPMENT_DOCKER=true vite dev",
"serve:dist": "http-server dist -a localhost --cors --gzip",
"build": "rollup -c",
"build:docker": "VUE_APP_DEVELOPMENT_DOCKER=true rollup -c",
"build:serve": "concurrently \"rollup -c -w\" \"npm run serve:dist\"",
"typecheck": "vue-tsc --noEmit",
"cy:open": "cypress open --e2e --browser chrome",
"cy:run": "cypress run --env TAGS=\"not @skip\" --headless --browser chrome",
"test:e2e": "start-server-and-test serve http://localhost:8080 cy:open",
"test:e2e:ci": "start-server-and-test serve http://localhost:8080 cy:run",
"test": "npm run test:e2e:ci",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"install:local": "npm install file:$(ls ../x/packages/x-components/*.tgz | sort -V | tail -n 1) --no-save",
"install:adapter-platform:local": "npm install file:$(ls ../x/packages/x-adapter-platform/*.tgz | sort -V | tail -n 1) --no-save",
"install:types:local": "npm install file:$(ls ../x/packages/x-types/*.tgz | sort -V | tail -n 1) --no-save",
"install:utils:local": "npm install file:$(ls ../x/packages/x-archetype-utils/*.tgz | sort -V | tail -n 1) --no-save",
"install:xds:local": "npm install file:$(ls ../x/packages/x-tailwindcss/*.tgz | sort -V | tail -n 1) --no-save",
"prepare": "husky install"
},
"dependencies": {
"@empathyco/x-adapter": "8.1.0-alpha.19",
"@empathyco/x-adapter-platform": "1.1.0-alpha.56",
"@empathyco/x-archetype-utils": "2.0.0-alpha.37",
"@empathyco/x-components": "6.0.0-alpha.219",
"@empathyco/x-types": "10.1.0-alpha.48",
"@empathyco/x-utils": "1.0.3-alpha.15",
"tslib": "2.8.1",
"vue": "3.5.29",
"vue-i18n": "9.14.5",
"vuex": "4.0.2"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "24.0.1",
"@bahmutov/cypress-esbuild-preprocessor": "2.2.8",
"@cucumber/messages": "31.2.0",
"@empathyco/eslint-config": "1.10.31",
"@empathyco/x-tailwindcss": "2.0.0-alpha.32",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "5.0.7",
"@types/autoprefixer": "9.7.2",
"@types/cypress-cucumber-preprocessor": "4.0.5",
"@types/dom-speech-recognition": "0.0.7",
"@vitejs/plugin-vue": "5.2.4",
"autoprefixer": "10.4.27",
"colors": "1.4.0",
"concurrently": "9.2.1",
"cssnano": "7.1.2",
"cypress": "14.5.4",
"http-server": "14.1.1",
"husky": "8.0.3",
"lint-staged": "15.5.2",
"postcss": "8.5.6",
"postcss-dir-pseudo-class": "8.0.1",
"postcss-import": "15.1.0",
"postcss-logical": "7.0.1",
"postcss-nested": "6.2.0",
"process": "0.11.10",
"rollup": "4.59.0",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-delete": "2.2.0",
"rollup-plugin-generate-html-template": "1.6.1",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-styles": "4.0.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.36.0",
"sass": "1.97.3",
"start-server-and-test": "2.1.5",
"tailwindcss": "3.4.19",
"typescript": "5.9.3",
"vite": "6.4.1",
"vite-plugin-html-inject": "1.1.2",
"vite-plugin-vue-inspector": "5.3.2",
"vue-tsc": "3.2.5"
},
"prettier": "@empathyco/eslint-config/prettier",
"lint-staged": {
"*": [
"eslint --fix --no-warn-ignored",
"prettier --write --list-different --ignore-unknown"
]
}
}