-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.47 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
{
"name": "webpack-starter-template",
"version": "1.0.0",
"description": "A simple starter template for setting up a ECMAScript 6 project with barba.js and webpack.",
"main": "app.js",
"scripts": {
"dev": "NODE_ENV=development gulp --require @babel/register",
"build": "NODE_ENV=production gulp build --require @babel/register",
"prettier": "prettier --write src/",
"lint:css": "stylelint \"**/*.{css,less,styl,scss,sass,sss,tsx}\" --ignore-path .gitignore",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,scss}\" --ignore-path .gitignore",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path .gitignore --fix"
},
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.13.16",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.14",
"browserslist": "^4.16.6",
"clean-html": "^1.5.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.5",
"del": "^6.0.0",
"dynamic-webpack-entries": "^1.0.1",
"eslint": "^7.27.0",
"file-include-webpack-plugin": "^1.3.9",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-clean-css": "^4.3.0",
"gulp-file-include": "^2.3.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-strip-comments": "^2.5.2",
"gulp-version-number": "^0.2.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^1.6.0",
"path": "^0.12.7",
"popper.js": "^1.16.1",
"postcss": "^8.3.0",
"postcss-loader": "^5.3.0",
"prettier": "^2.2.1",
"process": "^0.11.10",
"sass": "^1.57.1",
"stylelint": "^13.7.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-twbs-bootstrap": "^2.2.1",
"terser-webpack-plugin": "^5.1.2",
"url-loader": "^4.1.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.2.3",
"bootstrap-select": "^1.13.18",
"gsap": "^3.11.3",
"jquery": "^3.6.0"
},
"homepage": "http://pagevamp.github.io/Bootstrap-5/"
}