-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "libraries-wagtail",
"version": "1.0.0",
"description": "CCA Libraries website in Wagtail CMS",
"scripts": {
"build": "gulp build",
"css": "gulp css",
"eslint": "eslint --cache .",
"js": "gulp js",
"stylelint": "stylelint --cache --config .stylelintrc.json --fix **/*.scss",
"test": "npm run eslint; npm run stylelint",
"watch": "gulp"
},
"browserslist": [
"defaults"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cca/libraries_wagtail.git"
},
"author": "phette23 <phette23@gmail.com> (http://phette.net)",
"license": "ECL-2.0",
"bugs": {
"url": "https://github.com/cca/libraries_wagtail/issues"
},
"homepage": "https://github.com/cca/libraries_wagtail#readme",
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"autoprefixer": "^10.4.27",
"gulp": "^5.0.1",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-postcss": "^10.0.0",
"gulp-sass": "^6.0.1",
"gulp-uglify": "^3.0.2",
"postcss": "^8.5.8",
"sass": "^1.98.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"postcss-scss": "^4.0.9",
"stylelint": "^17.4.0",
"stylelint-config-sass-guidelines": "^13.0.0",
"stylelint-order": "^8.1.1",
"stylelint-scss": "^7.0.0"
},
"engines": {
"node": "~24"
}
}