This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.6 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
{
"name": "accutheme",
"version": "1.0.0",
"description": "Starter theme for DNN Platform websites using Bootstrap v4.6.2",
"exports": "./gulpfile.js",
"scripts": {
"build": "cross-env NODE_ENV=production gulp build",
"clean": "gulp clean",
"favicons": "gulp favicons",
"start": "gulp",
"lint:scripts": "eslint --format=pretty --fix",
"lint:styles": "stylelint --syntax scss",
"package": "webpack --config webpack.installer.config.js",
"postinstall": "gulp build"
},
"type": "module",
"engines": {
"node": ">=16.20.2 || <19.0.0"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Accuraty/AccuTheme-2021.git"
},
"author": "Accuraty Solutions",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.6.2",
"bootstrap-icons": "^1.11.3",
"core-js": "^3.35.1",
"jquery": "^3.7.1",
"popper.js": "^1.16.1",
"srraf": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/eslint-plugin": "^7.23.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@ronilaukkarinen/gulp-stylelint": "^14.1.2",
"acorn": "^8.11.3",
"autoprefixer": "^10.4.17",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"cssnano": "^6.0.3",
"del": "^7.1.0",
"dotenv": "^16.4.2",
"emojis-list": "^3.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-webpack-plugin": "^4.0.1",
"esm": "^3.2.25",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^8.0.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-imagemin": "^9.0.0",
"gulp-postcss": "^10.0.0",
"gulp-real-favicon": "^0.3.2",
"gulp-replace": "^1.1.4",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"husky": "^9.0.10",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"lint-staged": "^15.2.2",
"node-sass": "^9.0.0",
"postcss": "^8.4.35",
"postcss-import": "^16.0.0",
"prettier": "^3.2.5",
"stylelint": "^15.11.0",
"stylelint-config-twbs-bootstrap": "^12.0.0",
"stylelint-formatter-pretty": "^3.2.1",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:scripts"
],
"*.scss": [
"npm run lint:styles"
]
}
}