hof 24.0.0 → 24.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.hof-wrapper.js +30 -0
- package/package.json +20 -16
- package/sandbox/package.json +5 -2
- package/sandbox/yarn.lock +189 -96
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/*
|
|
4
|
+
* NOTE: This file is a wrapper for the default Hof ESLint config.
|
|
5
|
+
* It is used to override rules for specific files in the Hof repo that are
|
|
6
|
+
* not compatible with the default config.
|
|
7
|
+
* This can be removed once the hof-config-eslint default config is updated
|
|
8
|
+
* to support these files.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
const baseConfig = require('./node_modules/eslint-config-hof/default.js');
|
|
12
|
+
|
|
13
|
+
module.exports = {
|
|
14
|
+
...baseConfig,
|
|
15
|
+
overrides: [
|
|
16
|
+
...(baseConfig.overrides || []),
|
|
17
|
+
{
|
|
18
|
+
files: [
|
|
19
|
+
'build/tasks/vite/index.js',
|
|
20
|
+
'build/tasks/vite/vite.config.js',
|
|
21
|
+
'test/frontend/toolkit/vitest.config.js'
|
|
22
|
+
],
|
|
23
|
+
rules: {
|
|
24
|
+
'import/no-unresolved': 'off',
|
|
25
|
+
'node/no-missing-import': 'off',
|
|
26
|
+
'node/no-missing-require': 'off'
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hof",
|
|
3
3
|
"description": "A bootstrap for HOF projects",
|
|
4
|
-
"version": "24.
|
|
4
|
+
"version": "24.2.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"author": "HomeOffice",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"test": "yarn run unit && yarn run test:jest && yarn run test:functional && yarn run test:vite && yarn run test:lint",
|
|
24
24
|
"unit": "LOG_LEVEL=error nyc _mocha \"test/**/*.spec.js\" \"sandbox/test/**/*.spec.js\"",
|
|
25
25
|
"unit:nocov": "LOG_LEVEL=error mocha \"test/**/*.spec.js\" \"sandbox/test/**/*.spec.js\"",
|
|
26
|
-
"test:lint": "eslint . --config
|
|
26
|
+
"test:lint": "eslint . --config ./.eslintrc.hof-wrapper.js",
|
|
27
27
|
"test:functional": "funkie mocha ./test/functional-tests --timeout 20000 --exit",
|
|
28
28
|
"test:vite": "vitest run --config test/frontend/toolkit/vitest.config.js",
|
|
29
29
|
"test:jest": "jest test/frontend/jest test/integration/index test/utilities/helpers/jest",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
39
39
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
40
40
|
"aliasify": "^2.1.0",
|
|
41
|
-
"axios": "^1.
|
|
41
|
+
"axios": "^1.16.0",
|
|
42
42
|
"bluebird": "^3.7.2",
|
|
43
43
|
"body-parser": "^1.20.3",
|
|
44
44
|
"callsite": "^1.0.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"debug": "^4.4.3",
|
|
52
52
|
"deprecate": "^1.1.1",
|
|
53
53
|
"dialog-polyfill": "^0.5.6",
|
|
54
|
-
"dotenv": "^
|
|
54
|
+
"dotenv": "^16.0.0",
|
|
55
55
|
"duplexify": "^3.7.1",
|
|
56
56
|
"exorcist": "^2.0.0",
|
|
57
57
|
"express": "^4.21.2",
|
|
@@ -72,15 +72,15 @@
|
|
|
72
72
|
"is-pdf": "^1.0.0",
|
|
73
73
|
"jquery": "^3.7.1",
|
|
74
74
|
"libphonenumber-js": "^1.12.23",
|
|
75
|
-
"lodash": "^4.
|
|
76
|
-
"markdown-it": "^
|
|
75
|
+
"lodash": "^4.18.1",
|
|
76
|
+
"markdown-it": "^14.2.0",
|
|
77
77
|
"minimatch": "^4.2.5",
|
|
78
78
|
"minimist": "^1.2.8",
|
|
79
79
|
"mixwith": "^0.1.1",
|
|
80
80
|
"moment": "^2.30.1",
|
|
81
81
|
"morgan": "^1.10.1",
|
|
82
82
|
"mustache": "^4.2.0",
|
|
83
|
-
"notifications-node-client": "^8.
|
|
83
|
+
"notifications-node-client": "^8.4.0",
|
|
84
84
|
"redis": "^3.1.2",
|
|
85
85
|
"reqres": "^3.0.1",
|
|
86
86
|
"rimraf": "^3.0.2",
|
|
@@ -89,9 +89,9 @@
|
|
|
89
89
|
"uglify-js": "^3.19.3",
|
|
90
90
|
"underscore": "^1.13.7",
|
|
91
91
|
"urijs": "^1.19.11",
|
|
92
|
-
"uuid": "^
|
|
93
|
-
"
|
|
94
|
-
"
|
|
92
|
+
"uuid": "^11.1.1",
|
|
93
|
+
"winston": "^3.18.3",
|
|
94
|
+
"vite": "^7.3.5"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@cucumber/cucumber": "^7.3.2",
|
|
@@ -109,10 +109,10 @@
|
|
|
109
109
|
"funkie": "0.0.5",
|
|
110
110
|
"funkie-phantom": "0.0.1",
|
|
111
111
|
"istanbul": "^0.4.5",
|
|
112
|
-
"jest": "^30.2
|
|
113
|
-
"jest-environment-jsdom": "^30.
|
|
112
|
+
"jest": "^30.4.2",
|
|
113
|
+
"jest-environment-jsdom": "^30.4.1",
|
|
114
114
|
"jquery": "^3.7.1",
|
|
115
|
-
"mocha": "^
|
|
115
|
+
"mocha": "^11.7.6",
|
|
116
116
|
"mocha-sandbox": "^1.0.0",
|
|
117
117
|
"node-mocks-http": "^1.17.2",
|
|
118
118
|
"npm-run-all": "^4.1.5",
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"playwright": "^1.56.0",
|
|
121
121
|
"postcode": "0.2.2",
|
|
122
122
|
"proxyquire": "^1.8.0",
|
|
123
|
-
"release-it": "^
|
|
123
|
+
"release-it": "^20.2.0",
|
|
124
124
|
"sinon": "^11.1.2",
|
|
125
125
|
"sinon-chai": "^3.7.0",
|
|
126
126
|
"supertest": "^3.4.2",
|
|
@@ -140,7 +140,11 @@
|
|
|
140
140
|
"exit": "true"
|
|
141
141
|
},
|
|
142
142
|
"resolutions": {
|
|
143
|
-
"
|
|
144
|
-
"
|
|
143
|
+
"form-data": "^2.5.6",
|
|
144
|
+
"js-yaml": "^4.2.0",
|
|
145
|
+
"qs": "^6.14.1",
|
|
146
|
+
"serialize-javascript": "^7.0.3",
|
|
147
|
+
"tough-cookie": "^4.1.3",
|
|
148
|
+
"vite": "^7.3.5"
|
|
145
149
|
}
|
|
146
150
|
}
|
package/sandbox/package.json
CHANGED
|
@@ -17,10 +17,13 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"govuk-frontend": "4.10",
|
|
19
19
|
"jquery": "^3.7.1",
|
|
20
|
-
"sass": "^1.
|
|
20
|
+
"sass": "^1.101.0",
|
|
21
21
|
"typeahead-aria": "^1.0.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"nodemon": "^
|
|
24
|
+
"nodemon": "^3.1.14"
|
|
25
|
+
},
|
|
26
|
+
"resolutions": {
|
|
27
|
+
"picomatch": "^2.3.2"
|
|
25
28
|
}
|
|
26
29
|
}
|
package/sandbox/yarn.lock
CHANGED
|
@@ -2,36 +2,119 @@
|
|
|
2
2
|
# yarn lockfile v1
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
version "
|
|
7
|
-
resolved "https://registry.yarnpkg.com/
|
|
8
|
-
integrity sha512-
|
|
5
|
+
"@parcel/watcher-android-arm64@2.5.6":
|
|
6
|
+
version "2.5.6"
|
|
7
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz#5f32e0dba356f4ac9a11068d2a5c134ca3ba6564"
|
|
8
|
+
integrity sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==
|
|
9
|
+
|
|
10
|
+
"@parcel/watcher-darwin-arm64@2.5.6":
|
|
11
|
+
version "2.5.6"
|
|
12
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz#88d3e720b59b1eceffce98dac46d7c40e8be5e8e"
|
|
13
|
+
integrity sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==
|
|
14
|
+
|
|
15
|
+
"@parcel/watcher-darwin-x64@2.5.6":
|
|
16
|
+
version "2.5.6"
|
|
17
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz#bf05d76a78bc15974f15ec3671848698b0838063"
|
|
18
|
+
integrity sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==
|
|
19
|
+
|
|
20
|
+
"@parcel/watcher-freebsd-x64@2.5.6":
|
|
21
|
+
version "2.5.6"
|
|
22
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz#8bc26e9848e7303ac82922a5ae1b1ef1bdb48a53"
|
|
23
|
+
integrity sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==
|
|
24
|
+
|
|
25
|
+
"@parcel/watcher-linux-arm-glibc@2.5.6":
|
|
26
|
+
version "2.5.6"
|
|
27
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz#1328fee1deb0c2d7865079ef53a2ba4cc2f8b40a"
|
|
28
|
+
integrity sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==
|
|
29
|
+
|
|
30
|
+
"@parcel/watcher-linux-arm-musl@2.5.6":
|
|
31
|
+
version "2.5.6"
|
|
32
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz#bad0f45cb3e2157746db8b9d22db6a125711f152"
|
|
33
|
+
integrity sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==
|
|
34
|
+
|
|
35
|
+
"@parcel/watcher-linux-arm64-glibc@2.5.6":
|
|
36
|
+
version "2.5.6"
|
|
37
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz#b75913fbd501d9523c5f35d420957bf7d0204809"
|
|
38
|
+
integrity sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==
|
|
39
|
+
|
|
40
|
+
"@parcel/watcher-linux-arm64-musl@2.5.6":
|
|
41
|
+
version "2.5.6"
|
|
42
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz#da5621a6a576070c8c0de60dea8b46dc9c3827d4"
|
|
43
|
+
integrity sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==
|
|
44
|
+
|
|
45
|
+
"@parcel/watcher-linux-x64-glibc@2.5.6":
|
|
46
|
+
version "2.5.6"
|
|
47
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz#ce437accdc4b30f93a090b4a221fd95cd9b89639"
|
|
48
|
+
integrity sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==
|
|
49
|
+
|
|
50
|
+
"@parcel/watcher-linux-x64-musl@2.5.6":
|
|
51
|
+
version "2.5.6"
|
|
52
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz#02400c54b4a67efcc7e2327b249711920ac969e2"
|
|
53
|
+
integrity sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==
|
|
54
|
+
|
|
55
|
+
"@parcel/watcher-win32-arm64@2.5.6":
|
|
56
|
+
version "2.5.6"
|
|
57
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz#caae3d3c7583ca0a7171e6bd142c34d20ea1691e"
|
|
58
|
+
integrity sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==
|
|
59
|
+
|
|
60
|
+
"@parcel/watcher-win32-ia32@2.5.6":
|
|
61
|
+
version "2.5.6"
|
|
62
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz#9ac922550896dfe47bfc5ae3be4f1bcaf8155d6d"
|
|
63
|
+
integrity sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==
|
|
64
|
+
|
|
65
|
+
"@parcel/watcher-win32-x64@2.5.6":
|
|
66
|
+
version "2.5.6"
|
|
67
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz#73fdafba2e21c448f0e456bbe13178d8fe11739d"
|
|
68
|
+
integrity sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==
|
|
69
|
+
|
|
70
|
+
"@parcel/watcher@^2.4.1":
|
|
71
|
+
version "2.5.6"
|
|
72
|
+
resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.5.6.tgz#3f932828c894f06d0ad9cfefade1756ecc6ef1f1"
|
|
73
|
+
integrity sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==
|
|
74
|
+
dependencies:
|
|
75
|
+
detect-libc "^2.0.3"
|
|
76
|
+
is-glob "^4.0.3"
|
|
77
|
+
node-addon-api "^7.0.0"
|
|
78
|
+
picomatch "^4.0.3"
|
|
79
|
+
optionalDependencies:
|
|
80
|
+
"@parcel/watcher-android-arm64" "2.5.6"
|
|
81
|
+
"@parcel/watcher-darwin-arm64" "2.5.6"
|
|
82
|
+
"@parcel/watcher-darwin-x64" "2.5.6"
|
|
83
|
+
"@parcel/watcher-freebsd-x64" "2.5.6"
|
|
84
|
+
"@parcel/watcher-linux-arm-glibc" "2.5.6"
|
|
85
|
+
"@parcel/watcher-linux-arm-musl" "2.5.6"
|
|
86
|
+
"@parcel/watcher-linux-arm64-glibc" "2.5.6"
|
|
87
|
+
"@parcel/watcher-linux-arm64-musl" "2.5.6"
|
|
88
|
+
"@parcel/watcher-linux-x64-glibc" "2.5.6"
|
|
89
|
+
"@parcel/watcher-linux-x64-musl" "2.5.6"
|
|
90
|
+
"@parcel/watcher-win32-arm64" "2.5.6"
|
|
91
|
+
"@parcel/watcher-win32-ia32" "2.5.6"
|
|
92
|
+
"@parcel/watcher-win32-x64" "2.5.6"
|
|
9
93
|
|
|
10
94
|
anymatch@~3.1.2:
|
|
11
|
-
version "3.1.
|
|
12
|
-
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.
|
|
13
|
-
integrity sha512-
|
|
95
|
+
version "3.1.3"
|
|
96
|
+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
|
|
97
|
+
integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
|
|
14
98
|
dependencies:
|
|
15
99
|
normalize-path "^3.0.0"
|
|
16
100
|
picomatch "^2.0.4"
|
|
17
101
|
|
|
18
|
-
balanced-match@^
|
|
19
|
-
version "
|
|
20
|
-
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-
|
|
21
|
-
integrity sha512-
|
|
102
|
+
balanced-match@^4.0.2:
|
|
103
|
+
version "4.0.4"
|
|
104
|
+
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-4.0.4.tgz#bfb10662feed8196a2c62e7c68e17720c274179a"
|
|
105
|
+
integrity sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==
|
|
22
106
|
|
|
23
107
|
binary-extensions@^2.0.0:
|
|
24
|
-
version "2.
|
|
25
|
-
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.
|
|
26
|
-
integrity sha512-
|
|
27
|
-
|
|
28
|
-
brace-expansion@^
|
|
29
|
-
version "
|
|
30
|
-
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-
|
|
31
|
-
integrity sha512-
|
|
108
|
+
version "2.3.0"
|
|
109
|
+
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522"
|
|
110
|
+
integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==
|
|
111
|
+
|
|
112
|
+
brace-expansion@^5.0.5:
|
|
113
|
+
version "5.0.6"
|
|
114
|
+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-5.0.6.tgz#ec68fe0a641a29d8711579caf641d05bae1f2285"
|
|
115
|
+
integrity sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==
|
|
32
116
|
dependencies:
|
|
33
|
-
balanced-match "^
|
|
34
|
-
concat-map "0.0.1"
|
|
117
|
+
balanced-match "^4.0.2"
|
|
35
118
|
|
|
36
119
|
braces@~3.0.2:
|
|
37
120
|
version "3.0.3"
|
|
@@ -40,10 +123,10 @@ braces@~3.0.2:
|
|
|
40
123
|
dependencies:
|
|
41
124
|
fill-range "^7.1.1"
|
|
42
125
|
|
|
43
|
-
|
|
44
|
-
version "3.
|
|
45
|
-
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.
|
|
46
|
-
integrity sha512-
|
|
126
|
+
chokidar@^3.5.2:
|
|
127
|
+
version "3.6.0"
|
|
128
|
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
|
|
129
|
+
integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
|
|
47
130
|
dependencies:
|
|
48
131
|
anymatch "~3.1.2"
|
|
49
132
|
braces "~3.0.2"
|
|
@@ -55,17 +138,24 @@ braces@~3.0.2:
|
|
|
55
138
|
optionalDependencies:
|
|
56
139
|
fsevents "~2.3.2"
|
|
57
140
|
|
|
58
|
-
|
|
59
|
-
version "0.0
|
|
60
|
-
resolved "https://registry.yarnpkg.com/
|
|
61
|
-
integrity sha512
|
|
141
|
+
chokidar@^5.0.0:
|
|
142
|
+
version "5.0.0"
|
|
143
|
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-5.0.0.tgz#949c126a9238a80792be9a0265934f098af369a5"
|
|
144
|
+
integrity sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==
|
|
145
|
+
dependencies:
|
|
146
|
+
readdirp "^5.0.0"
|
|
62
147
|
|
|
63
|
-
debug@^
|
|
64
|
-
version "
|
|
65
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-
|
|
66
|
-
integrity sha512-
|
|
148
|
+
debug@^4:
|
|
149
|
+
version "4.4.3"
|
|
150
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a"
|
|
151
|
+
integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==
|
|
67
152
|
dependencies:
|
|
68
|
-
ms "^2.1.
|
|
153
|
+
ms "^2.1.3"
|
|
154
|
+
|
|
155
|
+
detect-libc@^2.0.3:
|
|
156
|
+
version "2.1.2"
|
|
157
|
+
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz#689c5dcdc1900ef5583a4cb9f6d7b473742074ad"
|
|
158
|
+
integrity sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==
|
|
69
159
|
|
|
70
160
|
fill-range@^7.1.1:
|
|
71
161
|
version "7.1.1"
|
|
@@ -75,9 +165,9 @@ fill-range@^7.1.1:
|
|
|
75
165
|
to-regex-range "^5.0.1"
|
|
76
166
|
|
|
77
167
|
fsevents@~2.3.2:
|
|
78
|
-
version "2.3.
|
|
79
|
-
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.
|
|
80
|
-
integrity sha512-
|
|
168
|
+
version "2.3.3"
|
|
169
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
|
|
170
|
+
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
|
|
81
171
|
|
|
82
172
|
glob-parent@~5.1.2:
|
|
83
173
|
version "5.1.2"
|
|
@@ -101,10 +191,10 @@ ignore-by-default@^1.0.1:
|
|
|
101
191
|
resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"
|
|
102
192
|
integrity sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==
|
|
103
193
|
|
|
104
|
-
immutable@^
|
|
105
|
-
version "
|
|
106
|
-
resolved "https://registry.yarnpkg.com/immutable/-/immutable-
|
|
107
|
-
integrity sha512-
|
|
194
|
+
immutable@^5.1.5:
|
|
195
|
+
version "5.1.6"
|
|
196
|
+
resolved "https://registry.yarnpkg.com/immutable/-/immutable-5.1.6.tgz#21639bc80f9a0713e141a5f5a154ef9fdabf36dd"
|
|
197
|
+
integrity sha512-q1swsS8K7L8usSHuOqF2TAoCCkonYz0SG38wLAggaa4Wml70zixIvt2ql4coQ2C2B3hTjltJry4r6bULwgAXLQ==
|
|
108
198
|
|
|
109
199
|
is-binary-path@~2.1.0:
|
|
110
200
|
version "2.1.0"
|
|
@@ -118,7 +208,7 @@ is-extglob@^2.1.1:
|
|
|
118
208
|
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
|
|
119
209
|
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
|
|
120
210
|
|
|
121
|
-
is-glob@^4.0.1, is-glob@~4.0.1:
|
|
211
|
+
is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
|
|
122
212
|
version "4.0.3"
|
|
123
213
|
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
|
|
124
214
|
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
|
|
@@ -130,61 +220,69 @@ is-number@^7.0.0:
|
|
|
130
220
|
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
|
|
131
221
|
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
|
|
132
222
|
|
|
133
|
-
jquery@>=1.11
|
|
223
|
+
jquery@>=1.11:
|
|
224
|
+
version "4.0.0"
|
|
225
|
+
resolved "https://registry.yarnpkg.com/jquery/-/jquery-4.0.0.tgz#95c33ac29005ff72ec444c5ba1cf457e61404fbb"
|
|
226
|
+
integrity sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==
|
|
227
|
+
|
|
228
|
+
jquery@^3.7.1:
|
|
134
229
|
version "3.7.1"
|
|
135
230
|
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de"
|
|
136
231
|
integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==
|
|
137
232
|
|
|
138
|
-
minimatch@^
|
|
139
|
-
version "
|
|
140
|
-
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-
|
|
141
|
-
integrity sha512-
|
|
233
|
+
minimatch@^10.2.1:
|
|
234
|
+
version "10.2.5"
|
|
235
|
+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.2.5.tgz#bd48687a0be38ed2961399105600f832095861d1"
|
|
236
|
+
integrity sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==
|
|
142
237
|
dependencies:
|
|
143
|
-
brace-expansion "^
|
|
238
|
+
brace-expansion "^5.0.5"
|
|
144
239
|
|
|
145
|
-
ms@^2.1.
|
|
240
|
+
ms@^2.1.3:
|
|
146
241
|
version "2.1.3"
|
|
147
242
|
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
|
|
148
243
|
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
|
|
149
244
|
|
|
150
|
-
|
|
151
|
-
version "
|
|
152
|
-
resolved "https://registry.yarnpkg.com/
|
|
153
|
-
integrity sha512-
|
|
245
|
+
node-addon-api@^7.0.0:
|
|
246
|
+
version "7.1.1"
|
|
247
|
+
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.1.tgz#1aba6693b0f255258a049d621329329322aad558"
|
|
248
|
+
integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==
|
|
249
|
+
|
|
250
|
+
nodemon@^3.1.14:
|
|
251
|
+
version "3.1.14"
|
|
252
|
+
resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-3.1.14.tgz#8487ca379c515301d221ec007f27f24ecafa2b51"
|
|
253
|
+
integrity sha512-jakjZi93UtB3jHMWsXL68FXSAosbLfY0In5gtKq3niLSkrWznrVBzXFNOEMJUfc9+Ke7SHWoAZsiMkNP3vq6Jw==
|
|
154
254
|
dependencies:
|
|
155
255
|
chokidar "^3.5.2"
|
|
156
|
-
debug "^
|
|
256
|
+
debug "^4"
|
|
157
257
|
ignore-by-default "^1.0.1"
|
|
158
|
-
minimatch "^
|
|
258
|
+
minimatch "^10.2.1"
|
|
159
259
|
pstree.remy "^1.1.8"
|
|
160
|
-
semver "^5.
|
|
161
|
-
simple-update-notifier "^
|
|
260
|
+
semver "^7.5.3"
|
|
261
|
+
simple-update-notifier "^2.0.0"
|
|
162
262
|
supports-color "^5.5.0"
|
|
163
263
|
touch "^3.1.0"
|
|
164
264
|
undefsafe "^2.0.5"
|
|
165
265
|
|
|
166
|
-
nopt@~1.0.10:
|
|
167
|
-
version "1.0.10"
|
|
168
|
-
resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee"
|
|
169
|
-
integrity sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==
|
|
170
|
-
dependencies:
|
|
171
|
-
abbrev "1"
|
|
172
|
-
|
|
173
266
|
normalize-path@^3.0.0, normalize-path@~3.0.0:
|
|
174
267
|
version "3.0.0"
|
|
175
268
|
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
|
|
176
269
|
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
|
|
177
270
|
|
|
178
|
-
picomatch@^2.0.4, picomatch@^2.2.1:
|
|
179
|
-
version "2.3.
|
|
180
|
-
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.
|
|
181
|
-
integrity sha512-
|
|
271
|
+
picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.2, picomatch@^4.0.3:
|
|
272
|
+
version "2.3.2"
|
|
273
|
+
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.2.tgz#5a942915e26b372dc0f0e6753149a16e6b1c5601"
|
|
274
|
+
integrity sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==
|
|
182
275
|
|
|
183
276
|
pstree.remy@^1.1.8:
|
|
184
277
|
version "1.1.8"
|
|
185
278
|
resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a"
|
|
186
279
|
integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==
|
|
187
280
|
|
|
281
|
+
readdirp@^5.0.0:
|
|
282
|
+
version "5.0.0"
|
|
283
|
+
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-5.0.0.tgz#fbf1f71a727891d685bb1786f9ba74084f6e2f91"
|
|
284
|
+
integrity sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==
|
|
285
|
+
|
|
188
286
|
readdirp@~3.6.0:
|
|
189
287
|
version "3.6.0"
|
|
190
288
|
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
|
|
@@ -192,36 +290,33 @@ readdirp@~3.6.0:
|
|
|
192
290
|
dependencies:
|
|
193
291
|
picomatch "^2.2.1"
|
|
194
292
|
|
|
195
|
-
sass@^1.
|
|
196
|
-
version "1.
|
|
197
|
-
resolved "https://registry.yarnpkg.com/sass/-/sass-1.
|
|
198
|
-
integrity sha512-
|
|
293
|
+
sass@^1.101.0:
|
|
294
|
+
version "1.101.0"
|
|
295
|
+
resolved "https://registry.yarnpkg.com/sass/-/sass-1.101.0.tgz#c2db5bbf2f956be7277f6223b899d0d4be3c899b"
|
|
296
|
+
integrity sha512-OL3GoQyoUdDt843DpVmDO6y2k1sc5IhUDSpu8XucEI+35neq5QivZ1iuegnpraEVTJXlQGK1gl27zKcTLEPbQw==
|
|
199
297
|
dependencies:
|
|
200
|
-
chokidar "
|
|
201
|
-
immutable "^
|
|
298
|
+
chokidar "^5.0.0"
|
|
299
|
+
immutable "^5.1.5"
|
|
202
300
|
source-map-js ">=0.6.2 <2.0.0"
|
|
301
|
+
optionalDependencies:
|
|
302
|
+
"@parcel/watcher" "^2.4.1"
|
|
203
303
|
|
|
204
|
-
semver@^5.
|
|
205
|
-
version "
|
|
206
|
-
resolved "https://registry.yarnpkg.com/semver/-/semver-
|
|
207
|
-
integrity sha512-
|
|
208
|
-
|
|
209
|
-
semver@~7.0.0:
|
|
210
|
-
version "7.0.0"
|
|
211
|
-
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
|
|
212
|
-
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
|
|
304
|
+
semver@^7.5.3:
|
|
305
|
+
version "7.8.4"
|
|
306
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.8.4.tgz#c73eceebae0616934be8dff28a7fd70757c8e696"
|
|
307
|
+
integrity sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==
|
|
213
308
|
|
|
214
|
-
simple-update-notifier@^
|
|
215
|
-
version "
|
|
216
|
-
resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-
|
|
217
|
-
integrity sha512-
|
|
309
|
+
simple-update-notifier@^2.0.0:
|
|
310
|
+
version "2.0.0"
|
|
311
|
+
resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz#d70b92bdab7d6d90dfd73931195a30b6e3d7cebb"
|
|
312
|
+
integrity sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==
|
|
218
313
|
dependencies:
|
|
219
|
-
semver "
|
|
314
|
+
semver "^7.5.3"
|
|
220
315
|
|
|
221
316
|
"source-map-js@>=0.6.2 <2.0.0":
|
|
222
|
-
version "1.
|
|
223
|
-
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.
|
|
224
|
-
integrity sha512-
|
|
317
|
+
version "1.2.1"
|
|
318
|
+
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
|
|
319
|
+
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
|
|
225
320
|
|
|
226
321
|
supports-color@^5.5.0:
|
|
227
322
|
version "5.5.0"
|
|
@@ -238,11 +333,9 @@ to-regex-range@^5.0.1:
|
|
|
238
333
|
is-number "^7.0.0"
|
|
239
334
|
|
|
240
335
|
touch@^3.1.0:
|
|
241
|
-
version "3.1.
|
|
242
|
-
resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.
|
|
243
|
-
integrity sha512-
|
|
244
|
-
dependencies:
|
|
245
|
-
nopt "~1.0.10"
|
|
336
|
+
version "3.1.1"
|
|
337
|
+
resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.1.tgz#097a23d7b161476435e5c1344a95c0f75b4a5694"
|
|
338
|
+
integrity sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==
|
|
246
339
|
|
|
247
340
|
typeahead-aria@^1.0.4:
|
|
248
341
|
version "1.0.4"
|