-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.53 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "algoritmik-dashboard",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "gulp watch",
"build:dev": "gulp build",
"build:prod": "gulp build --prod",
"generate": "node generate"
},
"lint-staged": {
"*.js": "eslint",
"*.pug": "pug-lint",
"*.scss": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": [
"> 0.1%",
"IE 11"
],
"repository": {
"type": "git",
"url": "git+https://github.com/saplumbaga/AlgoritmikDashboard.git"
},
"keywords": [
"gulp",
"js",
"sass",
"pug",
"linters"
],
"author": "Algoritmik <[email protected]>",
"license": "GPL",
"bugs": {
"url": "https://github.com/saplumbaga/AlgoritmikDashboard/issues"
},
"homepage": "https://github.com/saplumbaga/AlgoritmikDashboard",
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/eslint-parser": "^7.12.17",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/register": "^7.12.13",
"@babel/runtime": "^7.12.18",
"@zoxon/emitty": "^1.4.2",
"autoprefixer": "^10.2.4",
"babelify": "^10.0.0",
"browser-sync": "^2.26.14",
"browserify": "^17.0.0",
"cssnano": "^4.1.10",
"del": "^6.0.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-ext-replace": "^0.3.0",
"gulp-if": "^3.0.0",
"gulp-image": "^6.2.1",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.0",
"gulp-posthtml": "^3.0.5",
"gulp-pug": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"postcss": "^8.2.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-property-lookup": "^2.0.0",
"postcss-short": "^5.0.0",
"postcss-sort-media-queries": "^3.6.5",
"posthtml": "^0.15.1",
"posthtml-inline-svg": "^0.2.0",
"prettier": "^2.2.1",
"pug-lint": "^2.6.0",
"stylelint": "^13.10.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"bootstrap": "^5.0.1",
"jquery": "^3.5.1"
}
}