generated from Accuraty/AccuTheme-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.39 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
99
100
101
102
103
104
{
"//": [
"This is a hacky way of leaving comments in a package.json file.",
"All comments must be left here in this specific string array as the // key will cause errors if duplicated or not in root.",
"Taken from https://stackoverflow.com/questions/14221579/how-do-i-add-comments-to-package-json-for-npm-install",
"COMMENTS:",
"Glob: used in webpack.SCSS.config.js.js to generate a key:value object of the scss files where",
" the key is the filename without extension and the value is the full file name."
],
"name": "AccuTheme",
"version": "1.1.0",
"description": "Bootstrap v4.6.2 custom theme starter for DNN Platform websites",
"exports": "./gulpfile.js",
"scripts": {
"build": "cross-env NODE_ENV=production gulp build",
"clean": "gulp clean",
"start": "gulp",
"favicons": "gulp favicons",
"images": "webpack --config webpack.images.config.js",
"package": "webpack --config webpack.installer.config.js",
"updateDLLs": "robocopy \"A:\\dev\\dlls\" \"C:\\dev\\dlls\" /MIR /W:5 /R:2 /NJH /NDL",
"cleanDLLs": "pwsh -Command \"Remove-Item -Path C:\\dev\\dlls -Recurse -Force; Copy-Item -Path A:\\dev\\dlls -Destination C:\\dev\\dlls -Recurse -Force\"",
"lint:scripts": "eslint --format=pretty --fix",
"lint:styles": "stylelint --syntax scss",
"postinstall": "gulp build"
},
"type": "module",
"engines": {
"node": ">=20.18.1 || <21.0.0"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Accuraty/AccuTheme-Bs4.git"
},
"author": "Accuraty Solutions",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.6.2",
"bootstrap-icons": "^1.11.3",
"core-js": "^3.40.0",
"jquery": "^3.7.1",
"popper.js": "^1.16.1",
"srraf": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.26.5",
"@babel/eslint-plugin": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@ronilaukkarinen/gulp-stylelint": "^14.1.2",
"acorn": "^8.14.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"cross-env": "^7.0.3",
"del": "^8.0.0",
"dotenv": "^16.4.7",
"emojis-list": "^3.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-webpack-plugin": "^4.2.0",
"esm": "^3.2.25",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^8.0.0",
"glob": "^11.0.1",
"gulp": "^5.0.0",
"gulp-cli": "^3.0.0",
"gulp-real-favicon": "^0.3.2",
"gulp-replace": "^1.1.4",
"husky": "^9.1.7",
"image-minimizer-webpack-plugin": "^4.1.3",
"imagemin": "^9.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-svgo": "^11.0.1",
"lint-staged": "^15.4.1",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"stylelint": "^15.11.0",
"stylelint-config-twbs-bootstrap": "^12.0.0",
"stylelint-formatter-pretty": "^3.2.1",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:scripts"
],
"*.scss": [
"npm run lint:styles"
]
}
}