-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.43 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
106
107
108
109
{
"private": true,
"browserslist": [
"defaults and supports es6-module"
],
"dependencies": {
"@babel/runtime": "^7.25.0",
"@fullcalendar/core": "^4.3.1",
"@fullcalendar/daygrid": "^4.3.0",
"@fullcalendar/interaction": "^4.3.0",
"@fullcalendar/timegrid": "^4.3.0",
"@github/relative-time-element": "^4.4.5",
"@openhpi/quiz-recap": "^1.4.2",
"@openhpi/xikolo-video-player": "^1.2.5",
"@rails/ujs": "7.1.3-4",
"@toast-ui/editor": "^3.2.2",
"bootstrap-sass": "3.4.3",
"core-js": "^3.4.5",
"d3": "^3.5.17",
"dropzone": "^5.5.0",
"flatpickr": "^4.6.13",
"form-request-submit-polyfill": "^2.0.0",
"html5sortable": "^0.14.0",
"i18n-js": "^4.5.0",
"jquery": "^2.2.4",
"js-cookie": "^2.2.1",
"list.js": "^2.3.1",
"luxon": "^3.2.1",
"markdown-it": "^14.1.0",
"moment": "2.30.1",
"sweetalert2": "^11.4.8",
"table-builder": "^2.1.1",
"tom-select": "^2.2.2"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.0",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.17.0",
"@stoplight/cli": "^6.0.2354",
"@types/d3": "^3",
"@types/jqueryui": "^1.12.20",
"@types/list.js": "^2",
"@types/luxon": "^3.4.2",
"@types/markdown-it": "^14.0.1",
"babel-loader": "^10.0.0",
"browserslist": "^4.23.2",
"compression-webpack-plugin": "^11.1.0",
"css-loader": "^7.1.2",
"cssnano": "^7.0.4",
"editorconfig-checker": "^6.0.0",
"eslint": "^9.17.0",
"globals": "^16.0.0",
"husky": "9.1.7",
"image-webpack-loader": "^8.1.0",
"lint-staged": "^15.2.7",
"markdownlint": "^0.37.0",
"markdownlint-cli": "^0.44.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.40",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.0",
"postcss-scss": "^4.0.9",
"prettier": "3.5.3",
"sass-embedded": "^1.77.8",
"sass-loader": "^16.0.0",
"stylelint": "^16.0.0",
"stylelint-config-idiomatic-order": "10.0.0",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-config-two-dash-bem": "^1.0.0",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.18.1",
"webpack": "^5.93.0",
"webpack-assets-manifest": "^6.0.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.0",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1"
},
"scripts": {
"build": "webpack --config config/assets/webpack.config.mjs",
"start": "NODE_OPTIONS=--max-http-header-size=80000 webpack serve --config config/assets/webpack.config.mjs",
"format": "prettier --write .",
"tsc:check": "tsc --noEmit --skipLibCheck",
"lint:css": "stylelint app/assets/**/*.{css,scss} brand/*/assets/**/*.{css,scss}",
"lint:format": "prettier --check .",
"lint:js": "eslint app/assets",
"lint:md": "markdownlint '**/*.{md,md.erb}' .",
"postinstall": "husky"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write",
"editorconfig-checker"
],
"*.rb": "bundle exec rubocop --force-exclusion --autocorrect",
"*.slim": "bundle exec slim-lint",
"*.{js,ts,jsx,tsx,mjs}": "eslint --fix",
"*.{css,scss,sass}": "stylelint --fix --allow-empty-input",
"*.{md,md.erb}": "markdownlint --fix"
},
"engines": {
"node": ">= 20.18",
"yarn": "4.9.0"
},
"packageManager": "[email protected]"
}