-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 981 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 981 Bytes
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
{
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@hotwired/stimulus": "^3.2.2",
"@playwright/test": "^1.50.0",
"@symfony/stimulus-bridge": "^4.0.1",
"@symfony/webpack-encore": "^5.2.0",
"core-js": "^3.38.1",
"file-loader": "^6.2.0",
"regenerator-runtime": "^0.14.1",
"sass": "^1.79.4",
"sass-embedded": "^1.79.4",
"sass-loader": "^16.0.1",
"webpack": "^5.105.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0",
"webpack-notifier": "^1.15.0"
},
"overrides": {
"serialize-javascript": "^7.0.3"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed",
"e2e:ui": "playwright test --ui",
"e2e:debug": "playwright test --debug"
}
}