-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.61 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
{
"name": "beapi-frontend-framework",
"version": "5.5.0",
"author": "Be API",
"repository": {
"type": "git",
"url": "https://github.com/BeAPI/beapi-frontend-framework"
},
"scripts": {
"start": "webpack-cli --watch --config config/webpack.dev.js",
"build": "webpack-cli --config config/webpack.prod.js",
"lint:css": "stylelint \"src/scss/**/*.scss\"",
"lint:js": "eslint \"src/js/**/*.js\"",
"lint": "concurrently \"npm run lint:css\" \"npm run lint:js\"",
"bundle-report": "npm run build && webpack-bundle-analyzer dist/stats.json"
},
"license": "GPL-2.0",
"dependencies": {
"@fontsource-utils/scss": "^0.2.4",
"@fontsource/poppins": "^5.3.0",
"lazysizes": "^5.3.2",
"oneloop.js": "^5.3.1"
},
"devDependencies": {
"@wordpress/blocks": "^11.21.0",
"@wordpress/browserslist-config": "^6.53.0",
"@wordpress/dependency-extraction-webpack-plugin": "^6.53.0",
"@wordpress/dom-ready": "^3.58.0",
"@wordpress/hooks": "^3.58.0",
"@wordpress/stylelint-config": "^24.2.0",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^9.2.1",
"css-loader": "^7.1.4",
"cssnano": "^7.1.2",
"esbuild-loader": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.2.0",
"image-minimizer-webpack-plugin": "^4.1.4",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1",
"mini-css-extract-plugin": "^2.10.2",
"postcss": "^8.5.6",
"postcss-import": "^16.1.1",
"postcss-loader": "^8.2.1",
"postcss-preset-env": "^10.5.0",
"postcss-pxtorem": "^6.1.0",
"postcss-scss": "^4.0.9",
"postcss-sort-media-queries": "^5.2.0",
"prettier": "^2.8.8",
"sass": "^1.103.0",
"sass-loader": "^16.0.8",
"sharp": "^0.34.5",
"stylelint": "^16.26.1",
"stylelint-config-recess-order": "^7.8.0",
"stylelint-order": "^7.0.0",
"stylelint-scss": "^6.14.0",
"stylelint-webpack-plugin": "^5.1.0",
"svg-sprite-loader": "^6.0.11",
"svgo-loader": "^3.0.3",
"terser-webpack-plugin": "^5.3.14",
"webpack": "^5.109.2",
"webpack-bundle-analyzer": "^5.3.1",
"webpack-cli": "^7.2.2",
"webpack-manifest-plugin": "^6.0.1",
"webpack-merge": "^6.0.1",
"webpackbar": "^7.0.0"
},
"volta": {
"node": "24.19.0",
"npm": "12.0.2"
},
"allowScripts": {
"@parcel/watcher": true,
"gifsicle": true,
"jpegtran-bin": true,
"optipng-bin": true,
"sharp@0.34.5": true,
"esbuild@0.28.2": true
}
}