forked from alphagov/digital-buying-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "digitalbuying",
"version": "1.0.0",
"dependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babelify": "^10.0.0",
"browser-sync": "^3.0.3",
"browserify": "14.1.0",
"del": "2.2.2",
"govuk-frontend": "^3.9.1",
"gulp": "^5.0.0",
"gulp-autoprefixer": "^9.0.0",
"gulp-csso": "^3.0.1",
"gulp-if": "2.0.2",
"gulp-sass": "5.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "2.0.1",
"sass": "^1.83.1",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0"
},
"devDependencies": {
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^14.0.0"
},
"babel": {
"presets": ["@babel/preset-env"],
"plugins": ["@babel/plugin-proposal-class-properties"]
},
"browserify": {
"transform": ["babelify"]
},
"browserslist": ["> 1%", "last 2 versions", "iOS >=10"],
"stylelint": {
"extends": "stylelint-config-standard-scss",
"rules": {
"selector-class-pattern": "^(?:(?:o|c|u|t|s|is|has|_|js|qa)-)?[a-z0-9]+(?:-[a-z0-9]+)*(?:__[a-z0-9]+(?:-[a-z0-9]+)*)?(?:--[a-z0-9]+(?:-[a-z0-9]+)*)?(?:\\[.+\\])?$"
}
}
}