-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 989 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 989 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
36
37
38
39
40
41
42
43
44
45
{
"name": "hotel-example-site",
"private": true,
"license": "MIT",
"scripts": {
"build": "webpack",
"start": "webpack serve",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"test:report": "playwright show-report"
},
"dependencies": {
"bootstrap": "4.6.2",
"jquery": "3.7.1",
"jquery-ui": "1.14.2"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/node": "^24.12.2",
"copy-webpack-plugin": "14.0.0",
"prettier": "^3.8.3",
"terser-webpack-plugin": "5.6.1",
"webpack": "5.107.2",
"webpack-cli": "7.0.3",
"webpack-dev-server": "5.2.4"
},
"engines": {
"node": "^24"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24"
},
"packageManager": [
{
"name": "pnpm",
"version": "^10"
}
]
}
}