-
-
Notifications
You must be signed in to change notification settings - Fork 315
/
package.json
42 lines (42 loc) · 1.5 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
{
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"src/*/assets",
"src/*/src/Bridge/*/assets"
],
"scripts": {
"build": "yarn workspaces foreach -Apt run build",
"test": "yarn workspaces foreach -Apt run test",
"lint": "biome lint --write",
"format": "biome format --write",
"check-lint": "biome lint",
"check-format": "biome format"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@biomejs/biome": "^1.8.3",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@symfony/stimulus-testing": "^2.0.1",
"@vitest/browser": "^2.1.1",
"clean-css": "^5.3.3",
"playwright": "^1.47.0",
"rollup": "^4.22.5",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"vitest": "^2.1.1"
},
"resolutions": {
"@swup/plugin/@swup/prettier-config": "link:node_modules/.cache/null",
"@swup/plugin/@swup/browserslist-config": "link:node_modules/.cache/null",
"@swup/plugin/microbundle": "link:node_modules/.cache/null",
"@swup/plugin/prettier": "link:node_modules/.cache/null",
"@swup/plugin/shelljs": "link:node_modules/.cache/null",
"@swup/plugin/shelljs-live": "link:node_modules/.cache/null"
}
}