forked from DFE-Digital/early-careers-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.99 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
{
"name": "early-careers-framework",
"private": true,
"engines": {
"node": "16.17.x",
"yarn": "^1.22.0"
},
"dependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.20.6",
"@sentry/browser": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"accessible-autocomplete": "^2.0.3",
"babel-loader": "^8.3.0",
"babel-plugin-macros": "^3.1.0",
"compression-webpack-plugin": "^9.2.0",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^3.4.1",
"es6-promise": "^4.2.8",
"govuk-frontend": "^4.4.0",
"mini-css-extract-plugin": "^2.7.1",
"sass": "^1.56.1",
"sass-loader": "^12.6.0",
"shakapacker": "6.5.4",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0",
"webpack-sources": "^3.2.3",
"whatwg-fetch": "^3.6.1"
},
"devDependencies": {
"axe-core": "^4.5.2",
"cypress": "9.7.0",
"cypress-axe": "^0.14.0",
"cypress-cucumber-preprocessor": "^4.3.1",
"cypress-file-upload": "^5.0.8",
"cypress-intellij-reporter": "^0.0.7",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"prettier": "^2.8.0",
"webpack-dev-server": "^4.11.1"
},
"babel": {
"presets": [
"./node_modules/shakapacker/package/babel/preset.js"
]
},
"browserslist": [
"defaults"
],
"scripts": {
"cypress:open": "cypress open --project ./spec",
"cypress:run": "cypress run --project ./spec --config video=false,screenshotOnRunFailure=false",
"lint": "eslint --max-warnings 0 '{app,spec}/**/*.js' && prettier --check '{app,spec}/**/*.js'"
}
}