forked from empathyco/x-archetype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 4.01 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
97
98
99
100
101
102
103
104
105
{
"name": "@empathyco/x-archetype",
"author": "Empathy Systems Corporation S.L.",
"version": "1.0.0",
"license": "Apache-2.0",
"homepage": "https://github.com/empathyco/x-archetype",
"description": "Starting point to setup a X Components project",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --skip-plugins eslint",
"build": "rollup -c",
"build:serve": "concurrently \"rollup -c -w\" \"npm run serve:dist\"",
"serve:dist": "http-server dist -a localhost --cors",
"cy:open": "cypress open",
"cy:run": "cypress run --headless --browser chrome",
"test:e2e": "start-server-and-test build:serve http://localhost:8080 cy:open",
"test:e2e:ci": "start-server-and-test serve:dist http://localhost:8080 cy:run",
"test": "npm run test:e2e:ci",
"test:unit": "vue-cli-service test:unit",
"lint": "eslint src tests --ext .ts,.tsx,.vue",
"lint:fix": "npm run lint -- --fix",
"install:local": "npm install file:../x/packages/x-components/empathyco-x-components-3.0.0-alpha.360.tgz --no-save",
"install:utils:local": "npm install file:../x/packages/x-archetype-utils/empathyco-x-archetype-utils-0.1.0-alpha.2.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.0.0-alpha.22",
"@empathyco/x-adapter-platform": "^1.0.0-alpha.59",
"@empathyco/x-archetype-utils": "^0.1.0-alpha.15",
"@empathyco/x-components": "^3.0.0-alpha.360",
"@empathyco/x-deep-merge": "^1.3.0-alpha.29",
"@empathyco/x-types": "^10.0.0-alpha.56",
"@empathyco/x-utils": "^1.0.0-alpha.14",
"tslib": "~2.4.1",
"vue": "~2.7.14",
"vue-class-component": "~7.2.6",
"vue-i18n": "~8.21.0",
"vue-property-decorator": "~8.3.0",
"vue-runtime-helpers": "~1.1.2",
"vuex": "~3.6.2"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "~5.11.1",
"@empathyco/eslint-plugin-x": "^2.0.0-alpha.27",
"@empathyco/x-tailwindcss": "^1.0.0-alpha.28",
"@empathyco/x-translations": "^1.1.0-alpha.33",
"@rollup/plugin-commonjs": "~21.0.1",
"@rollup/plugin-json": "~4.1.0",
"@rollup/plugin-node-resolve": "~13.1.3",
"@rollup/plugin-replace": "~3.0.1",
"@types/autoprefixer": "~9.6.1",
"@types/cypress-cucumber-preprocessor": "~4.0.1",
"@types/jest": "~27.0.3",
"@vue/cli-plugin-babel": "~5.0.4",
"@vue/cli-plugin-typescript": "~5.0.4",
"@vue/cli-plugin-unit-jest": "~5.0.4",
"@vue/cli-plugin-vuex": "~5.0.4",
"@vue/cli-service": "~5.0.4",
"@vue/test-utils": "~1.0.3",
"autoprefixer": "~9.7.4",
"colors": "1.4.0",
"concurrently": "~6.5.1",
"cssnano": "~4.1.10",
"cypress": "~8.4.0",
"cypress-cucumber-preprocessor": "~4.3.1",
"eslint": "~8.30.0",
"http-server": "^14.1.0",
"husky": "~8.0.3",
"lint-staged": "~11.2.6",
"postcss": "~8.3.11",
"postcss-dir-pseudo-class": "~6.0.4",
"postcss-import": "~14.1.0",
"postcss-logical": "~5.0.4",
"postcss-nested": "~5.0.6",
"prettier": "~2.8.3",
"process": "~0.11.10",
"rollup": "~2.67.0",
"rollup-plugin-copy": "~3.4.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.31.2",
"rollup-plugin-visualizer": "~5.5.4",
"rollup-plugin-vue": "~5.1.9",
"sass": "~1.49.7",
"sass-loader": "~8.0.0",
"source-map-loader": "~1.1.3",
"start-server-and-test": "~1.14.0",
"tailwindcss": "^3.1.8",
"typescript": "~4.9.4",
"vue-template-compiler": "~2.7.14"
},
"prettier": "@empathyco/eslint-plugin-x/prettier-config",
"lint-staged": {
"./{src,tests,build}/**/*.{vue,js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}