-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"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"
},
"dependencies": {
"@rails/ujs": "^7.1.1",
"axios": "^1.6.0",
"core-js": "^3.33.2",
"dropzone": "^6.0.0-beta.2",
"esbuild": "^0.19.5",
"govuk-frontend": "^4.7.0",
"jest": "^29.7.0",
"jquery": "^3.7.1",
"js-search": "^2.0.1",
"sass": "^1.69.5"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@testing-library/jest-dom": "^6.1.4",
"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.4.31",
"puppeteer": "^21.4.1",
"standard": "^17.1.0",
"stylelint": "^15.11.0",
"stylelint-config-gds": "^1.0.0",
"stylelint-order": "^6.0.3"
},
"standard": {
"env": [
"jest"
]
}
}