forked from TYPO3GmbH/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1 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
{
"name": "t3g-blog",
"scripts": {
"build": "webpack --config webpack.config.mjs",
"playwright:install": "playwright install chromium",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"watch": "webpack --config webpack.config.mjs --watch"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"devDependencies": {
"@playwright/test": "^1.59.1",
"autoprefixer": "^10.4.27",
"css-loader": "^6.11.0",
"mini-css-extract-plugin": "^2.10.2",
"postcss-loader": "^7.3.4",
"sass": "^1.99.0",
"sass-loader": "^13.3.3",
"terser-webpack-plugin": "^5.4.0",
"webpack": "^5.106.1",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.1.1"
},
"dependencies": {
"datatables.net": "^1.13.11",
"datatables.net-bs5": "^1.13.11"
},
"overrides": {
"ajv": "^8.18.0",
"cross-spawn": "^7.0.6"
}
}