-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.42 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": "MyFirstWebsite",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "https://github.com/benabraham/bs4-nodejs-static"
},
"main": "index.js",
"devDependencies": {
"autoprefixer": "^10.2.5",
"bootstrap": "4.6.1",
"browser-sync": "^2.26.14",
"del": "^6.0.0",
"esm": "^3.2.25",
"gulp": "^4.0.2",
"gulp-csso": "^4.0.1",
"gulp-dart-sass": "^1.0.2",
"gulp-nunjucks": "^5.1.0",
"gulp-postcss": "^9.0.0",
"gulp-sourcemaps": "^3.0.0",
"postcss": "^8.2.10",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-uncss": "^0.17.0",
"prettier": "2.2.1",
"surge": "^0.23.0",
"uncss": "^0.17.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "gulp develop",
"build": "gulp build",
"deploy": "gulp build && surge dist --domain \"https://my-first-website.surge.sh\""
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"overrides": [
{
"files": "*.json",
"options": {
"tabWidth": 2
}
}
]
},
"author": "Daniel Srb",
"license": "MIT",
"description": "A basic template to start a website based on Bootstrap 4",
"browserslist": [
">= 1%",
"last 1 major version",
"not dead",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
}