-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.54 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
{
"name": "laa-apply-for-legal-aid",
"private": true,
"scripts": {
"standardjs": "standard",
"stylelint": "stylelint app/assets/stylesheets",
"test": "jest",
"build": "esbuild app/javascript/*.* --bundle --loader:.gif=dataurl --sourcemap --minify --outdir=app/assets/builds --public-path=assets --target=es6",
"build:css": "sass ./app/assets/stylesheets/application.scss:./app/assets/builds/application.css --style=compressed --load-path=node_modules --quiet-deps",
"postinstall": "rm -rf node_modules/resolve/test/resolver/multirepo node_modules/eslint-plugin-react/node_modules/resolve/test/resolver/multirepo"
},
"dependencies": {
"@ministryofjustice/frontend": "^3.3.1",
"@rails/ujs": "^7.1.501",
"axios": "^1.7.9",
"core-js": "^3.40.0",
"dropzone": "^6.0.0-beta.2",
"esbuild": "^0.24.2",
"govuk-frontend": "^5.8.0",
"jest": "^29.7.0",
"jquery": "^3.7.1",
"js-search": "^2.0.1",
"sass": "^1.83.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@testing-library/jest-dom": "^6.6.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-jsdom-global": "^4.0.0",
"postcss": "^8.5.1",
"puppeteer": "^24.0.0",
"standard": "^17.1.2",
"stylelint": "^16.13.2",
"stylelint-config-gds": "^2.0.0",
"stylelint-order": "^6.0.4"
},
"standard": {
"env": [
"jest"
]
}
}