forked from fleetyards/fleetyards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.65 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.65 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "fleetyards",
"private": true,
"version": "5.14.4",
"scripts": {
"docs:old": "aglio --theme-variables slate --theme-template triple -i docs/v1/main.apib -o public/docs/v1.html",
"docs:watch": "aglio --theme-variables slate --theme-template triple -i docs/v1/main.apib --server",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:e2e": "cypress run --browser chrome --headless",
"test:e2e:report": "generate-mochawesome-report --jsonDir test/reports/e2e --output test/reports/e2e/html --charts",
"lint": "yarn run lint:js && yarn run lint:prettier",
"lint:fix": "yarn run lint:js && yarn run lint:prettier:fix",
"lint:js": "eslint --ext .js,.ts,.vue --fix app/frontend test/javascript",
"lint:prettier": "prettier app/frontend --check",
"lint:prettier:fix": "prettier app/frontend --write"
},
"dependencies": {
"@rails/actioncable": "7.0.4",
"@sentry/tracing": "7.42.0",
"@sentry/vue": "7.42.0",
"ahoy.js": "0.4.2",
"axios": "0.26.1",
"bootstrap": "4.6.0",
"bootstrap-vue": "2.23.1",
"clipboard": "2.0.11",
"core-js": "3.29.0",
"date-fns": "2.29.3",
"date-fns-tz": "2.0.0",
"debounce": "1.2.1",
"dom-to-image": "2.6.0",
"downloadjs": "1.4.7",
"highcharts": "9.3.3",
"html2canvas": "1.4.1",
"i18n-js": "3.9.2",
"jquery": "3.6.4",
"js-cookie": "3.0.1",
"lodash.debounce": "4.0.8",
"noty": "3.1.4",
"nprogress": "0.2.0",
"panzoom": "9.4.3",
"papaparse": "5.4.0",
"photoswipe": "4.1.3",
"pnp-webpack-plugin": "1.7.0",
"popper.js": "1.16.1",
"qs": "6.11.1",
"three": "0.150.1",
"ts-debounce": "4.0.0",
"v-tooltip": "2.1.3",
"vee-validate": "3.4.14",
"vue": "2.7.14",
"vue-class-component": "7.2.6",
"vue-infinite-loading": "2.4.5",
"vue-lazyload": "1.3.4",
"vue-meta": "2.4.0",
"vue-router": "3.5.3",
"vue-scrollto": "^2.20.0",
"vue-slider-component": "3.2.24",
"vue-swatches": "2.1.1",
"vue-trix": "1.2.0",
"vue-upload-component": "2.8.23",
"vuedraggable": "2.24.3",
"vuex": "3.6.2",
"vuex-class": "0.3.2",
"vuex-persistedstate": "3.2.1"
},
"devDependencies": {
"@types/i18n-js": "3.8.4",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"@vitejs/plugin-vue2": "2.2.0",
"@vue/eslint-config-typescript": "11.0.2",
"@vue/test-utils": "1.3.0",
"c8": "7.13.0",
"cypress": "12.7.0",
"eslint": "8.36.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.7.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-compat": "4.1.2",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-sort-class-members": "1.16.0",
"eslint-plugin-vue": "8.4.1",
"jsdom": "21.1.0",
"mocha": "10.2.0",
"postcss": "8.4.21",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-import": "15.1.0",
"postcss-preset-env": "8.0.1",
"prettier": "2.8.4",
"sass": "1.59.2",
"standard-version": "9.5.0",
"typescript": "4.9.5",
"vite": "4.1.4",
"vite-plugin-pwa": "0.14.4",
"vite-plugin-ruby": "3.1.3",
"vitest": "0.29.2",
"vue-eslint-parser": "9.1.0",
"vue-template-compiler": "2.7.14",
"workbox-build": "6.5.4",
"workbox-window": "6.5.4"
},
"resolutions": {
"async": ">=3.2.2",
"follow-redirects": ">=1.14.8",
"json5": ">=2.2.2",
"node-fetch": ">=3.2.10",
"node-forge": ">=1.3.0",
"qs": ">=6.5.3"
}
}