-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.04 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "travel-brochure",
"version": "2.0.0",
"engines": {
"npm": ">=8",
"node": ">=18"
},
"scripts": {
"docker:dev-up": "docker-compose -f *.dev.yml up",
"docker:dev-down": "docker-compose -f *.dev.yml down",
"docker:dev-build": "docker-compose -f *.dev.yml build",
"docker:client-build": "docker-compose -f *.dev.yml exec client npm run build",
"docker:client-remove-build": "docker-compose -f *.dev.yml exec client rm -r build",
"docker:dev-client-shell": "docker-compose -f *.dev.yml exec client sh",
"sass:watch": "sass resource/scss/style.scss assets/css/style.css --watch",
"sass:compile": "sass resource/scss/style.scss assets/css/style.css --style compressed",
"start": "NODE_ENV=development webpack serve",
"build": "NODE_ENV=production webpack"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@fullhuman/postcss-purgecss": "^5.0.0",
"babel-loader": "^9.1.0",
"bootstrap": "^5.2.3",
"bootstrap-icons": "^1.10.3",
"compression-webpack-plugin": "^10.0.0",
"css-loader": "^6.7.2",
"dotenv": "^16.0.3",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"image-minimizer-webpack-plugin": "^3.8.1",
"imagemin": "^8.0.1",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"jquery": "^3.6.3",
"mapbox-gl": "^2.12.0",
"mini-css-extract-plugin": "^2.7.5",
"popper.js": "^1.16.1",
"postcss": "^8.4.19",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.0.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.56.2",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"webpack-dev-server": "^4.11.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}