-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·135 lines (135 loc) · 4.36 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "setup-gulp",
"type": "module",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "A theme boilerplate for Integration of Gulp to manage the assets of a project",
"scripts": {
"build": "gulp build",
"build:compile": "npx babel src --extensions .ts --out-dir build --source-maps",
"build:types": "tsc",
"clean": "gulp cleanAssets",
"coverage": "vitest run --coverage --exclude ./gulpfile.js",
"format": "prettier --write .",
"lint": "eslint --ignore-path .eslintignore \"src/**/*.ts\" --fix",
"lint:check": "eslint --ignore-path .eslintignore \"src/**/*.ts\"",
"precommit": "yarn run lint",
"prettier": "prettier --check '**/**/*.{js,jsx,ts,tsx,scss}'",
"prettier:fix": "prettier --write '**/**/*.{js,jsx,ts,tsx,scss}'",
"serve": "gulp serve",
"start": "gulp watch",
"test": "vitest",
"test:ui": "vitest --ui",
"reset": "rm -f package-lock.json && rm -rf ./node_modules && rm -rf ./build && rm -rf ./src/css && yarn run clean"
},
"dependencies": {
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-cssnano": "^2.1.3",
"gulp-sass": "^5.1.0",
"gulp-size": "^5.0.0",
"postcss": "^8.4.35"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/node": "^7.23.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@babel/runtime": "^7.24.1",
"@types/browser-sync": "^2.29.0",
"@types/gulp": "^4.0.17",
"@types/gulp-babel": "^6.1.33",
"@types/gulp-cache": "^0.4.9",
"@types/gulp-clean-css": "^4.3.4",
"@types/gulp-concat": "^0.0.37",
"@types/gulp-imagemin": "^8.0.6",
"@types/gulp-plumber": "^0.0.37",
"@types/gulp-postcss": "^8.0.6",
"@types/gulp-rename": "^2.0.6",
"@types/gulp-sass": "^5.0.4",
"@types/gulp-size": "^4.0.3",
"@types/gulp-sourcemaps": "^0.0.38",
"@types/gulp-uglify": "^3.0.11",
"@types/gulp-util": "^3.0.41",
"@types/merge-stream": "^1.1.5",
"@types/node": "^20.12.7",
"@types/run-sequence": "^0.0.34",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vitest/coverage-v8": "^1.5.0",
"@vitest/ui": "^1.5.0",
"autoprefixer": "^10.4.17",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-source-map-support": "^2.2.0",
"bourbon": "^7.3.0",
"bourbon-neat": "^4.0.0",
"browser-sync": "^3.0.2",
"core-js": "^3.36.0",
"css-mqpacker": "^7.0.0",
"del": "^7.1.0",
"es5-ext": "^0.10.63",
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gifsicle": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-imagemin": "7.0.0",
"gulp-notify": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass-lint": "^1.4.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"merge-stream": "^2.0.0",
"mozjpeg": "^8.0.0",
"normalize.css": "^8.0.1",
"optipng-bin": "^9.0.0",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"stylelint": "^16.3.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"typescript": "^5.4.3",
"vite": "^5.2.8",
"vitest": "^1.5.0"
},
"husky": {
"hooks": {
"applypatch-msg": "echo \"[Husky] applypatch-msg\"",
"pre-applypatch": "echo \"[Husky] pre-applypatch\"",
"post-applypatch": "echo \"[Husky] post-applypatch\"",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.scss": [
"stylelint --fix",
"git add"
]
},
"browserslist": [
"last 2 versions"
]
}