-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.52 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "MyFirstBootstrapWebsite",
"version": "3.2.0",
"author": "Daniel Srb",
"license": "MIT",
"description": "A basic template to start a website based on Bootstrap 5",
"repository": {
"type": "git",
"url": "https://github.com/benabraham/bs5-static-site-starter"
},
"engines": {
"node": ">=22"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx update-browserslist-db@latest && gulp develop",
"build": "npx update-browserslist-db@latest && gulp build",
"deploy": "npx update-browserslist-db@latest && gulp build && surge dist --domain \"https://my-first-bootstrap-5-website.surge.sh\""
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"bootstrap": "5.3.3",
"browser-sync": "^3.0.3",
"del": "^8.0.0",
"gulp": "^5.0.0",
"gulp-csso": "^4.0.1",
"gulp-dart-sass": "^1.1.0",
"gulp-nunjucks": "^6.0.0",
"gulp-postcss": "^10.0.0",
"gulp-sourcemaps": "^3.0.0",
"postcss": "^8.4.49",
"postcss-uncss": "^0.17.0",
"prettier": "3.3.3",
"sass": "^1.81.0",
"surge": "^0.24.6",
"uncss": "^0.17.3"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"overrides": [
{
"files": "*.json",
"options": {
"tabWidth": 2
}
}
]
},
"browserslist": [
">= 0.5%",
"last 2 major versions",
"not dead",
"Chrome >= 60",
"Firefox >= 60",
"Firefox ESR",
"iOS >= 12",
"Safari >= 12",
"not Explorer <= 11"
]
}