-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
43 lines (43 loc) · 1.61 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": "whitehall",
"description": "Publishing application for GOV.UK",
"private": true,
"author": "Government Digital Service",
"license": "MIT",
"scripts": {
"lint": "yarn run lint:js && yarn run lint:scss && yarn run lint:prettier",
"lint:js": "eslint --cache --cache-location .cache/eslint --color --ignore-path .gitignore -- \"**/*.js\"",
"lint:scss": "stylelint app/assets/stylesheets/",
"lint:prettier": "prettier --cache --cache-location .cache/prettier --cache-strategy content --check -- \"**/*.{js,scss}\"",
"jasmine:prepare": "RAILS_ENV=test bundle exec rails assets:clobber assets:precompile",
"jasmine:ci": "yarn run jasmine:prepare && yarn run jasmine-browser-runner runSpecs",
"jasmine:browser": "yarn run jasmine:prepare && yarn run jasmine-browser-runner"
},
"dependencies": {
"accessible-autocomplete": "alphagov/accessible-autocomplete-multiselect",
"choices.js": "^10.2.0",
"cropperjs": "^1.6.1",
"jquery": "3.7.1",
"miller-columns-element": "^2.0.0",
"paste-html-to-govspeak": "^0.4.0"
},
"devDependencies": {
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-n": "^16.2.0",
"jasmine-browser-runner": "^2.3.0",
"jasmine-core": "^5.1.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"standard": "^17.1.0",
"stylelint": "^15.11.0",
"stylelint-config-gds": "^1.0.0"
},
"resolutions": {
"stylelint/strip-ansi": "6.0.1",
"stylelint/string-width": "4.2.3"
}
}