-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
43
44
45
46
47
48
{
"name": "website-booking",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "jest",
"prod": "webpack --config config.prod.js",
"dev": "webpack-dashboard -- webpack-dev-server --config config.dev.js",
"reinstall": "rm -f package-lock.json && rm -rf node_modules && npm install",
"deploy": "gh-pages -d dist"
},
"keywords": [
"website",
"booking"
],
"author": "marvinfriede",
"license": "UNLICENSED",
"devDependencies": {
"@types/jest": "^29.5.14",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"file-loader": "^6.2.0",
"gh-pages": "^6.3.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"mini-css-extract-plugin": "~2.9.2",
"postcss-loader": "^8.1.1",
"raw-loader": "^4.0.2",
"sass": "^1.83.1",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dashboard": "^3.3.8",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"@splidejs/splide": "^4.1.4",
"strip-json-comments": "^5.0.1",
"xmlhttprequest": "^1.8.0"
},
"jest": {
"verbose": true
}
}