-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"engines": {
"node": "20.x"
},
"scripts": {
"js:lint": "standard",
"js:lint:fix": "standard --fix",
"scss:lint": "stylelint 'app/assets/stylesheets/**/*.scss'",
"scss:lint:fix": "stylelint 'app/assets/stylesheets/**/*.scss' --fix",
"test": "jest",
"test:ci": "jest --ci --runInBand --coverage",
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds",
"build:css": "sass ./app/assets/stylesheets/application.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules --load-path=. --quiet-deps"
},
"dependencies": {
"@hotwired/turbo-rails": "^8.0.12",
"@ministryofjustice/frontend": "^3.3.0",
"accessible-autocomplete": "^3.0.1",
"govuk-country-and-territory-autocomplete": "^2.0.0",
"govuk-frontend": "^5.7.1",
"jquery": "^3.7.1",
"rails-ujs": "^5.2.8",
"sass": "^1.83.1",
"turbolinks": "^5.2.0"
},
"devDependencies": {
"esbuild": "^0.24.2",
"esbuild-jest-transform": "^2.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.49",
"standard": "^17.1.2",
"stylelint": "^15.11.0",
"stylelint-config-gds": "^1.1.1",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-scss": "^5.3.2"
},
"standard": {
"env": [
"jest"
]
},
"stylelint": {
"extends": "stylelint-config-gds/scss"
},
"license": "MIT",
"packageManager": "[email protected]"
}