-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 945 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 945 Bytes
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
{
"name": "content-data-admin",
"description": "Admin 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'",
"lint:scss": "stylelint app/assets/stylesheets/"
},
"standardx": {
"env": {
"browser": true
}
},
"eslintConfig": {
"rules": {
"no-var": 0
}
},
"stylelint": {
"extends": "stylelint-config-gds/scss",
"rules": {
"media-feature-range-notation": "prefix"
}
},
"devDependencies": {
"postcss": "^8.5.8",
"standardx": "^7.0.0",
"stylelint": "^17.4.0",
"stylelint-config-gds": "^2.0.0"
},
"dependencies": {
"accessible-autocomplete": "^3.0.1"
},
"resolutions": {
"js-yaml*3.13.1": "^3.14.2",
"js-yaml*4.1.0": "^4.1.1"
},
"packageManager": "yarn@3.5.0"
}