-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.52 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.52 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
{
"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}\"",
"lint:prettier:fix": "prettier --write \"**/*.{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": {
"cropperjs": "^1.6.2",
"paste-html-to-govspeak": "^0.5.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^6.6.0",
"jasmine-browser-runner": "^4.0.0",
"jasmine-core": "^6.1.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"standard": "^17.1.2",
"stylelint": "^16.26.1",
"stylelint-config-gds": "^2.0.0"
},
"resolutions": {
"selenium-webdriver": "4.17.0",
"glob": "^10.5.0"
}
}