-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.52 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
{
"name": "teaching-vacancies",
"type": "module",
"private": true,
"engine": {
"node": ">=24.0.0"
},
"browserslist": [
"last 2 major versions",
"IE 11",
"not dead"
],
"dependencies": {
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.23",
"@rails/actiontext": "^8.1.301",
"@rails/activestorage": "^8.1.301",
"@sentry/browser": "10.69.0",
"@stimulus/polyfills": "^2.0.0",
"accessible-autocomplete": "^3.0.1",
"axios": "^1.19.0",
"chartkick": "^5.0.1",
"classlist-polyfill": "^1.2.0",
"core-js": "^3.49.0",
"dompurify": "^3.4.13",
"govuk-frontend": "^6.4.0",
"leaflet": "^1.9.4",
"leaflet-gesture-handling": "^1.2.2",
"leaflet.markercluster": "^1.5.3",
"lodash": "^4.18.1",
"moment": "^2.30.1",
"rails-ujs": "^5.2.8",
"tough-cookie": "^6.0.2",
"trix": "^2.1.19"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^8.0.2",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"concurrently": "^10.0.4",
"esbuild": "^0.28.1",
"esbuild-plugin-babel": "^0.2.3",
"eslint": "^10.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.9.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "30.4.1",
"jsdom": "^30.0.1",
"postcss": "^8.5.26",
"postcss-scss": "^4.0.9",
"sass": "^1.102.0",
"stylelint": "^17.14.1",
"stylelint-config-sass-guidelines": "^13.0.0",
"stylelint-config-standard": "^40.0.0"
},
"scripts": {
"build": "node esbuild.config.js",
"build:css": "sass ./app/assets/stylesheets/application.scss:./app/assets/builds/application.css --no-source-map --load-path=. --load-path=node_modules --quiet-deps --style compressed",
"test": "concurrently \"yarn run js:test\" \"yarn run js:lint\" \"yarn run sass:lint\"",
"js:test": "jest",
"js:test:coverage": "jest --coverage",
"js:lint": "eslint ./app/assets/javascript",
"sass:lint": "yarn stylelint app/assets/stylesheets/**/*.scss -q"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"testMatch": [
"<rootDir>/app/assets/javascript/**/*.test.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/app/assets/javascript/lib/polyfill/*"
],
"testEnvironment": "jest-environment-jsdom"
},
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
}