forked from Accuraty/AccuTheme-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.2 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
{
"name": "accutheme",
"version": "1.0.0",
"description": "Starter theme for DNN Platform websites",
"main": "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",
"postinstall": "gulp build"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Accuraty/AccuTheme.git"
},
"author": "Accuraty Solutions",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.6.0",
"bootstrap-icons": "^1.5.0",
"core-js": "^3.13.1",
"flickity": "^2.2.2",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"srraf": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.4",
"@babel/eslint-plugin": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"cssnano": "^5.0.5",
"del": "^6.0.0",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-webpack-plugin": "^2.5.4",
"gulp": "^4.0.2",
"gulp-imagemin": "^7.1.0",
"gulp-postcss": "^9.0.0",
"gulp-real-favicon": "^0.3.2",
"gulp-replace": "^1.1.3",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-stylelint": "^13.0.0",
"husky": "^4.3.6",
"imagemin-pngquant": "^9.0.2",
"lint-staged": "^10.5.3",
"node-sass": "^6.0.0",
"postcss": "^8.3.0",
"postcss-import": "^14.0.2",
"prettier": "^2.3.0",
"stylelint": "^13.13.1",
"stylelint-config-twbs-bootstrap": "^2.2.0",
"stylelint-formatter-pretty": "^2.1.1",
"terser-webpack-plugin": "^5.1.2",
"webpack": "^5.38.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:scripts"
],
"*.scss": [
"npm run lint:styles"
]
}
}