-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.24 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
{
"name": "school_experience",
"private": true,
"dependencies": {
"@babel/core": "7",
"@babel/helper-compilation-targets": "7.26.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@babel/plugin-transform-function-name": "^7.25.1",
"@babel/plugin-transform-runtime": "7",
"@babel/preset-env": "7",
"@babel/runtime": "7",
"@googlemaps/js-api-loader": "^1.16.8",
"@stimulus/polyfills": "^2.0.0",
"@types/babel__core": "7",
"@types/webpack": "5",
"accessible-autocomplete": "^3.0.1",
"babel-loader": "9",
"babel-plugin-macros": "^3.1.0",
"compression-webpack-plugin": "11",
"core-js": "^3.38.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"custom-event-polyfill": "^1.0.7",
"dfe-autocomplete": "github:DFE-Digital/dfe-autocomplete",
"express": "4.21.1",
"govuk-frontend": "^5.8.0",
"js-cookie": "^3.0.5",
"json5": "2.2.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss-preset-env": "^6.7.2",
"sass": "^1.79.4",
"sass-loader": "^16.0.2",
"semver": "^7.5.2",
"shakapacker": "8.0.2",
"stimulus": "^3.2.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "5",
"webpack": "5",
"webpack-assets-manifest": "5",
"webpack-cli": "4",
"webpack-merge": "5",
"webpack-sources": "^3.2.3"
},
"devDependencies": {
"babel-plugin-dynamic-import-node": "^2.3.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"webpack-dev-server": "4"
},
"jest": {
"testRegex": ".*_spec.js",
"roots": [
"spec/javascript"
],
"testEnvironment": "jsdom",
"moduleDirectories": [
"node_modules",
"app/webpacker",
"app/webpacker/controllers",
"app/webpacker/packs"
],
"transformIgnorePatterns": [
"node_modules/?!(stimulus)"
]
},
"babel": {
"presets": [
"./node_modules/shakapacker/package/babel/preset.js"
]
},
"browserslist": [
"defaults",
"not IE 11"
],
"scripts": {
"spec": "jest"
},
"packageManager": "[email protected]"
}