-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 964 Bytes
/
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
{
"name": "app",
"dependencies": {
"accessible-autocomplete": "^3.0.1",
"esbuild": "^0.24.2",
"govuk-frontend": "5.7.1",
"sass": "^1.83.4"
},
"devDependencies": {
"playwright": "^1.49.1",
"standard": "^17.1.2",
"stylelint": "^16.13.2",
"stylelint-config-gds": "^2.0.0"
},
"optionalDependencies": {
"@esbuild/dawin-arm64": "^0.23.0",
"@esbuild/linux-x64": "^0.24.0"
},
"scripts": {
"build:css": "sass ./app/assets/stylesheets/application.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules --quiet-deps",
"build": "esbuild app/assets/javascripts/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "standard 'app/assets/javascripts/**/*.js'",
"lint:scss": "stylelint app/assets/stylesheets/"
},
"stylelint": {
"extends": "stylelint-config-gds/scss"
}
}