-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.44 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.44 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "nimbly-lite",
"version": "7.0.0",
"description": "Hubspot theme",
"license": "MIT",
"authors": "Resultify",
"repository": "resultify/nimbly-lite",
"type": "module",
"scripts": {
"prepare": "husky",
"lint-css": "stylelint 'src/css/**/*.css' 'theme/css/base/**/*.css' 'theme/modules/**/*.css' ",
"lint-js": "standard -v 'src/js/**/*.js build/**/*.js theme/**/*.js'",
"check-js": "tsc -p jsconfig.json --maxNodeModuleJsDepth 0",
"lint-all": "npm run lint-css && npm run lint-js && npm run check-js",
"test": "npm run lint-all",
"build": "cmslib --build",
"watch": "cmslib --watch",
"fetch": "cmslib --fetch",
"fetchModules": "cmslib --fetchModules",
"upload": "cmslib --upload",
"cleanUpload": "cmslib --cleanUpload",
"validate": "cmslib --validate",
"lighthouse": "cmslib --lighthouse",
"fields": "cmslib --fields",
"fetchDb": "cmslib --fetchDb",
"uploadDb": "cmslib --uploadDb"
},
"dependencies": {
"bootstrap": "~5.1.3",
"simplelightbox": "~2.11.0"
},
"devDependencies": {
"@resultify/hubspot-cms-lib": "~3.2.0",
"browserslist": "~4.23.0",
"husky": "~9.0.1",
"standard": "~17.1.0",
"stylelint": "~16.2.1",
"stylelint-config-recommended": "~14.0.0",
"stylelint-no-unsupported-browser-features": "~8.0.1",
"typescript": "~5.3.3"
},
"engines": {
"node": ">=18",
"npm": ">=8.19"
},
"standard": {
"ignore": [
"src/tmp/",
"theme/assets/"
]
},
"stylelint": {
"extends": [
"stylelint-config-recommended"
],
"plugins": [
"stylelint-no-unsupported-browser-features"
],
"rules": {
"custom-property-pattern": null,
"selector-class-pattern": null,
"selector-pseudo-element-colon-notation": "single",
"comment-empty-line-before": null,
"plugin/no-unsupported-browser-features": true
},
"ignoreFiles": [
"src/tmp/**/*.css",
"theme/assets/**/*.css"
]
},
"cmslib": {
"themeFolder": "theme",
"hubdbFolder": "hubdb",
"vendorSrc": "src",
"vendorDest": "theme/assets",
"js": {
"external": [
"@popperjs/core"
],
"replace": {
"global.SimpleLightbox": "window.SimpleLightbox"
},
"globals": {
"@popperjs/core": "Popper = () => {}"
}
},
"lighthouse": {
"performance": 75,
"accessibility": 90,
"bestPractices": 80,
"seo": 80
}
}
}