-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.58 KB
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
49
50
51
{
"name": "frontend",
"description": "Frontend application for GOV.UK",
"private": true,
"author": "Government Digital Service",
"license": "MIT",
"scripts": {
"lint": "yarn run lint:js && yarn run lint:scss",
"lint:js": "standard 'app/assets/javascripts/**/*.js' 'spec/javascripts/**/*.js'",
"lint:scss": "stylelint app/assets/stylesheets/",
"rails:precompile-assets": "RAILS_ENV=test bundle exec rails assets:clobber assets:precompile",
"nyc:instrument": "yarn run nyc instrument --delete public/assets/frontend tmp/nyc_output/assets",
"jasmine:prepare": "yarn run rails:precompile-assets && yarn run nyc:instrument",
"nyc:text-report": "yarn run nyc report",
"nyc:html-report": "yarn run nyc report --reporter html",
"jasmine:ci": "yarn run jasmine:prepare && yarn run jasmine-browser-runner runSpecs && yarn run nyc:text-report",
"jasmine:browser": "yarn run jasmine:prepare && yarn run jasmine-browser-runner"
},
"imports": {
"#root/*": "./*"
},
"standard": {
"env": [
"browser",
"jasmine"
],
"globals": [
"GOVUK"
],
"ignore": [
"spec/javascripts/vendor"
]
},
"stylelint": {
"extends": "stylelint-config-gds/scss"
},
"devDependencies": {
"jasmine-browser-runner": "^5.0.0",
"jasmine-core": "^7.0.2",
"nyc": "^18.0.0",
"standard": "^17.1.2",
"stylelint": "^17.15.0",
"stylelint-config-gds": "^3.0.0"
},
"packageManager": "yarn@4.18.0",
"dependencies": {
"@defra/interactive-map": "0.0.43-alpha",
"leaflet": "^1.9.4",
"maplibre-gl": "5.24.0"
}
}