-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
102 lines (102 loc) · 2.6 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
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
95
96
97
98
99
100
101
102
{
"name": "@eightshift/frontend-libs",
"version": "13.0.7",
"description": "A collection of useful frontend utility modules. powered by Eightshift",
"author": {
"name": "Eightshift team",
"email": "team@eightshift.com",
"url": "https://eightshift.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infinum/eightshift-frontend-libs.git"
},
"keywords": [
"frontend",
"scss",
"mixin",
"js",
"utility",
"module",
"WordPress"
],
"bugs": {
"url": "https://github.com/infinum/eightshift-frontend-libs/issues"
},
"scripts": {
"lintStyle": "stylelint **/*.scss",
"lintJs": "eslint blocks/ webpack/ scripts/ linters/",
"lint": "npm run lintJs && npm run lintStyle",
"prepare": "husky"
},
"homepage": "https://github.com/infinum/eightshift-frontend-libs#readme",
"license": "MIT",
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@eightshift/ui-components": "^1.6.1",
"@stylistic/eslint-plugin-js": "^2.8.0",
"@stylistic/stylelint-plugin": "^3.1.0",
"@swc/core": "^1.7.28",
"@uidotdev/usehooks": "^2.4.1",
"@wordpress/api-fetch": "^7.8.0",
"@wordpress/block-editor": "^14.3.0",
"@wordpress/dependency-extraction-webpack-plugin": "^5.9.0",
"@wordpress/dom-ready": "^4.8.0",
"@wordpress/server-side-render": "^5.8.0",
"autoprefixer": "^10.4.20",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.38.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.11.1",
"file-loader": "^6.2.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"import-glob": "^1.5.0",
"media-blender": "^2.1.0",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"postcss-scss": "^4.0.9",
"promisify-child-process": "^4.1.2",
"raw-loader": "^4.0.2",
"regenerator-runtime": "^0.14.1",
"sass": "^1.79.4",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-manifest-plugin": "^5.0.0",
"webpack-merge": "^6.0.1"
},
"devDependencies": {
"lint-staged": "^15.2.10",
"micromodal": "^0.4.10",
"ol": "^10.2.1",
"ol-mapbox-style": "^12.3.5",
"swiper": "^11.1.14"
},
"sideEffects": false,
"lint-staged": {
"*.scss": [
"npm run lintStyle"
],
"*.js": [
"npm run lintJs"
],
"*.php": [
"composer test"
]
},
"browserslist": [
">= 0.25%"
]
}