forked from alphagov/whitehall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
{
"name": "whitehall",
"description": "Publishing and frontend rendering application for GOV.UK",
"private": true,
"author": "Government Digital Service",
"license": "MIT",
"scripts": {
"lint": "yarn run lint:js && yarn run lint:scss",
"lint:js": "standardx 'app/assets/javascripts/**/*.js' 'spec/javascripts/**/*.js'",
"lint:scss": "stylelint app/assets/stylesheets/",
"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"
},
"standardx": {
"env": {
"browser": true,
"jquery": true,
"jasmine": true
},
"globals": [
"GOVUK",
"GOVUKAdmin"
],
"ignore": [
"app/assets/javascripts/vendor/"
]
},
"eslintConfig": {
"env": {
"es6": true
},
"rules": {
"no-var": 0
}
},
"dependencies": {
"accessible-autocomplete": "alphagov/accessible-autocomplete-multiselect",
"choices.js": "^10.2.0",
"cropperjs": "^1.5.13",
"jquery": "3.6.4",
"miller-columns-element": "^2.0.0",
"paste-html-to-govspeak": "^0.3.0"
},
"devDependencies": {
"jasmine-browser-runner": "^1.2.0",
"jasmine-core": "^4.6.0",
"postcss": "^8.4.23",
"standardx": "^7.0.0",
"stylelint": "^14.16.1",
"stylelint-config-gds": "^0.3.0"
}
}