-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "workspace",
"author": "Department for Business and Trade",
"private": true,
"dependencies": {
"@ministryofjustice/frontend": "^1.8.0",
"@sentry/browser": "^7.119.1",
"cropperjs": "^1.6.2",
"css-loader": "^5.2.7",
"govuk-frontend": "^4.5.0",
"htmx.org": "^1.9.8",
"mini-css-extract-plugin": "^1.6.2",
"sass": "^1.59.3",
"sass-loader": "^12.6.0",
"webpack": "^5.94.0",
"webpack-bundle-tracker": "^1.8.1",
"webpack-cli": "^4.10.0",
"y18n": "^4.0.3"
},
"version": "0.1.0",
"scripts": {
"assets:moj": "mkdir -p ./static/moj-frontend && cp -r ./node_modules/@ministryofjustice/frontend/moj/assets/* ./static/moj-frontend/",
"dev": "webpack --config webpack.config.js --watch",
"build": "npm run assets:moj && webpack --config webpack.config.js",
"heroku-postbuild": "npm run build",
"clean": "rm -f ./assets/webpack_bundles/*"
},
"browserslist": [
"last 3 chrome versions",
"last 1 firefox version",
"last 1 safari version",
"IE 11"
],
"engines": {
"npm": ">8.0.0",
"node": ">20.0.0"
},
"devDependencies": {
"prettier": "3.2.5"
}
}