-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
43 lines (43 loc) · 1.62 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-multiselect": "alphagov/accessible-autocomplete-multiselect",
"choices.js": "^11.0.2",
"cropperjs": "^1.6.2",
"govspeak-visual-editor": "^3.0.0",
"miller-columns-element": "^2.0.0",
"paste-html-to-govspeak": "^0.4.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"jasmine-browser-runner": "^2.5.0",
"jasmine-core": "^5.4.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"standard": "^17.1.2",
"stylelint": "^16.10.0",
"stylelint-config-gds": "^2.0.0"
},
"resolutions": {
"selenium-webdriver": "4.17.0",
"string-width": "4.2.3"
}
}