generated from Accuraty/AccuTheme-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.84 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
{
"name": "accutheme",
"version": "1.0.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",
"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\"",
"favicons": "gulp favicons",
"package": "webpack --config webpack.installer.config.js",
"lint:scripts": "eslint --format=pretty --fix",
"lint:styles": "stylelint --syntax scss",
"postinstall": "gulp build"
},
"type": "module",
"engines": {
"node": ">=20.12.2 || <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.37.1",
"jquery": "^3.7.1",
"popper.js": "^1.16.1",
"srraf": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/eslint-parser": "^7.24.8",
"@babel/eslint-plugin": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@ronilaukkarinen/gulp-stylelint": "^14.1.2",
"acorn": "^8.12.1",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"cssnano": "^7.0.4",
"del": "^7.1.0",
"dotenv": "^16.4.5",
"emojis-list": "^3.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-webpack-plugin": "^4.1.0",
"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.1.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.1.4",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"lint-staged": "^15.2.7",
"node-sass": "^9.0.0",
"postcss": "^8.4.40",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"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.93.0",
"webpack-cli": "^5.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:scripts"
],
"*.scss": [
"npm run lint:styles"
]
}
}