-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.97 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.97 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
{
"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",
"@ministryofjustice/frontend": "^9.0.0",
"@rails/actiontext": "^8.1.300",
"@rails/activestorage": "^8.1.300",
"@sentry/browser": "10.47.0",
"@stimulus/polyfills": "^2.0.0",
"accessible-autocomplete": "^3.0.1",
"axios": "^1.15.0",
"chartkick": "^5.0.1",
"classlist-polyfill": "^1.2.0",
"core-js": "^3.49.0",
"dfe-frontend": "^2.0.1",
"dompurify": "^3.4.0",
"govuk-frontend": "^6.1.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.1",
"trix": "^2.1.18"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"concurrently": "^9.2.1",
"dotenv": "^17.4.1",
"esbuild": "^0.28.0",
"esbuild-plugin-babel": "^0.2.3",
"eslint": "^10.1.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "30.3.0",
"jsdom": "^29.0.2",
"postcss": "^8.5.9",
"postcss-scss": "^4.0.9",
"sass": "^1.99.0",
"stylelint": "^17.1.0",
"stylelint-config-sass-guidelines": "^13.0.0",
"stylelint-config-standard": "^40.0.0",
"yaml": "^2.8.3"
},
"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",
"backstop:execute": "backstop $CMD --config='backstop/backstop.config.cjs'",
"visual:test:reference": "CMD=reference yarn run backstop:execute",
"visual:test:run": "CMD=test yarn run backstop:execute",
"visual:test:approve": "CMD=approve yarn run backstop:execute",
"postvisual:test:approve": "node backstop/lib/clean.js"
},
"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"
}