-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
96 lines (96 loc) · 3.96 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
89
90
91
92
93
94
95
96
{
"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\"",
"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",
"lint": "eslint 'src/**/*.{ts,tsx,vue}' 'tests/**/*.{ts,tsx,vue}'",
"lint:fix": "npm run lint -- --fix",
"install:local": "npm install file:../x/packages/x-components/empathyco-x-components-6.0.0-alpha.3.tgz --no-save",
"install:adapter-platform:local": "npm install file:../x/packages/x-adapter-platform/empathyco-x-adapter-platform-1.1.0-alpha.9.tgz --no-save",
"install:types:local": "npm install file:../x/packages/x-types/empathyco-x-types-10.1.0-alpha.6.tgz --no-save",
"install:utils:local": "npm install file:../x/packages/x-archetype-utils/empathyco-x-archetype-utils-0.1.0-alpha.20.tgz --no-save",
"install:xds:local": "npm install file:../x/packages/x-tailwindcss/empathyco-x-tailwindcss-1.0.0-alpha.25.tgz --no-save",
"json:csv": "json-csv ./src/i18n/messages",
"csv:json": "csv-json ./output ./src/i18n/messages",
"prepare": "husky install"
},
"dependencies": {
"@empathyco/x-adapter": "^8.1.0-alpha.0",
"@empathyco/x-adapter-platform": "^1.1.0-alpha.9",
"@empathyco/x-archetype-utils": "^2.0.0-alpha.2",
"@empathyco/x-components": "^6.0.0-alpha.19",
"@empathyco/x-deep-merge": "^2.0.3-alpha.1",
"@empathyco/x-types": "^10.1.0-alpha.6",
"@empathyco/x-utils": "^1.0.3-alpha.1",
"tslib": "~2.6.0",
"vue": "~3.4.38",
"vue-i18n": "~9.14.0",
"vuex": "4.0.2"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "~20.0.0",
"@bahmutov/cypress-esbuild-preprocessor": "~2.2.0",
"@empathyco/eslint-config": "^1.3.3",
"@empathyco/x-tailwindcss": "^1.2.0-alpha.5",
"@empathyco/x-translations": "^1.1.0-alpha.33",
"@rollup/plugin-commonjs": "~25.0.7",
"@rollup/plugin-json": "~6.1.0",
"@rollup/plugin-node-resolve": "~15.2.3",
"@rollup/plugin-replace": "~5.0.5",
"@types/autoprefixer": "~9.7.0",
"@types/cypress-cucumber-preprocessor": "~4.0.1",
"@vitejs/plugin-vue": "^5.1.2",
"autoprefixer": "~10.4.0",
"colors": "1.4.0",
"concurrently": "~8.2.0",
"cssnano": "~6.0.0",
"cypress": "~13.6.0",
"http-server": "~14.1.1",
"husky": "~8.0.3",
"lint-staged": "~15.2.0",
"postcss": "~8.4.0",
"postcss-dir-pseudo-class": "~8.0.0",
"postcss-import": "~15.1.0",
"postcss-logical": "~7.0.0",
"postcss-nested": "~6.0.0",
"process": "~0.11.10",
"rollup": "~4.9.1",
"rollup-plugin-copy": "~3.5.0",
"rollup-plugin-delete": "~2.0.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",
"rollup-plugin-visualizer": "~5.11.0",
"sass": "~1.69.0",
"start-server-and-test": "~1.15.0",
"tailwindcss": "^3.4.0",
"typescript": "~4.9.4",
"vite": "^5.4.2",
"vite-plugin-html-inject": "^1.1.2",
"vite-plugin-vue-inspector": "^5.1.3"
},
"prettier": "@empathyco/eslint-config/prettier",
"lint-staged": {
"./{src,tests,build}/**/*.{vue,js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}