-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
104 lines (104 loc) · 2.84 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
{
"license": "SEE LICENSE IN LICENSE-AGPLv3.txt",
"dependencies": {
"@appsignal/javascript": "^1.3.28",
"@appsignal/plugin-window-events": "^1.0.20",
"@appsignal/vue": "^1.1.5",
"@claviska/jquery-minicolors": "^2.3.2",
"@fortawesome/fontawesome-free": "^5.15.4",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@rails/ujs": "^7.0.8-3",
"accounting": "^0.4.1",
"air-datepicker": "^2.2.3",
"axe-core": "^4.2.1",
"axios": "^0.28.0",
"babel-jest": "^27.0.2",
"cleave.js": "^1.1.3",
"codemirror": "^5.35.0",
"cropperjs": "^1.6.1",
"crossfilter2": "^1.4.5",
"d3": "^7.9.0",
"d3-voronoi": "^1.1.4",
"devbridge-autocomplete": "^1.4.7",
"flightjs": "^1.5.2",
"geocomplete": "^1.7.0",
"gobierto-vizzs": "^3.1.2",
"html-to-image": "^1.9.0",
"i18n-js": "^3.0.3",
"jest": "^27.0.3",
"jqtree": "^1.4.5",
"jquery": "^3.5.0",
"jsgrid": "^1.5.3",
"leaflet": "^1.5.1",
"lodash": "^4.17.21",
"magnific-popup": "^1.1.0",
"mailcheck": "^1.1.1",
"mapbox-gl": "^1.4.1",
"mustache": "^2.3.0",
"normalize.css": "^8.0.1",
"perspective-map": "^1.2.0",
"purecss": "^2.0.6",
"select2": "4.0.8",
"simplemde": "^1.11.2",
"slickgrid": "^5.9.2",
"sortablejs": "^1.8.4",
"sticky-kit": "^1.1.3",
"tipsy-1a": "^1.0.0",
"turbolinks": "^5.1.1",
"velocity-animate": "^1.5.1",
"velocity-ui-pack": "^1.2.2",
"vue": "^2.5.16",
"vue-axe": "^2.4.4",
"vue-grid-layout": "^2.3.11",
"vue-mapbox": "^0.4.1",
"vue-router": "^3.1.3",
"vue2-leaflet": "^2.2.1",
"wicket": "^1.3.5"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@intrnl/esbuild-plugin-env": "^0.1.3",
"esbuild": "^0.21.5",
"esbuild-plugin-alias": "^0.2.1",
"esbuild-sass-plugin": "^3.3.1",
"esbuild-vue": "^1.2.2",
"eslint": "^9.5.0",
"eslint-plugin-vue": "^9.26.0",
"globals": "^15.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"stylelint": "^16.6.1",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"vue-template-compiler": "^2.7.16"
},
"scripts": {
"build": "node esbuild.config.mjs",
"build:report": "node esbuild.config.mjs --report",
"eslint": "eslint 'app/javascript/**/*.{js,vue}'",
"stylelint": "stylelint 'app/**/*.{css,scss}'",
"check_i18n": "script/check_i18n.sh",
"test": "jest",
"test:watch": "jest --watch"
},
"lint-staged": {
"app/javascript/**/*.{js,vue}": [
"eslint --fix",
"jest --bail --findRelatedTests"
],
"app/**/*.{css,scss}": [
"stylelint --fix"
],
"config/locales/**/*.yml": [
"npm run check_i18n"
]
},
"resolutions": {
"marked": "3.0.8"
},
"engines": {
"node": ">=18.18"
}
}