-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
60 lines (60 loc) · 1.29 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
{
"name": "PyConCZ",
"version": "1.0.0",
"author": "Daniel Srb",
"license": "MIT",
"description": "Front end part of cz.pycon.org",
"repository": {
"type": "git",
"url": "https://github.com/pyvec/cz.pycon.org"
},
"engines": {
"node": "20"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "browserslist --update-db && gulp develop",
"build": "browserslist --update-db && gulp build"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.10.5",
"browser-sync": "^2.29.3",
"del": "^7.0.0",
"gulp": "^4.0.2",
"gulp-csso": "^4.0.1",
"gulp-dart-sass": "^1.1.0",
"gulp-postcss": "^9.0.1",
"gulp-sourcemaps": "^3.0.0",
"postcss": "^8.4.27",
"postcss-uncss": "^0.17.0",
"prettier": "2.8.8",
"sass": "^1.64.1",
"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"
]
}