This repository has been archived by the owner on Oct 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.98 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
{
"name": "baba",
"private": true,
"type": "module",
"scripts": {
"start": "gulp",
"start:dev": "gulp --noserviceworker",
"build": "NODE_ENV=production npx gulp build_prod",
"lint": "eslint '_assets/js/**/*.js'",
"prettier": "prettier '_assets/js/**/*.js' --write"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "avoid"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"browserslist": [
"defaults"
],
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
}
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"broken-link-checker": "^0.7.8",
"browser-sync": "^2.29.3",
"canvas": "^2.9.3",
"chalk": "^5.2.0",
"del": "^7.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-cssnano": "^2.1.3",
"gulp-debug": "^4.0.0",
"gulp-duration": "^0.0.0",
"gulp-gm": "^0.0.9",
"gulp-htmlmin": "^5.0.1",
"gulp-imagemin": "8.0.0",
"gulp-inline-source": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-size": "^4.0.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
"gulp-webp": "^4.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1",
"imagemin-webp": "^8.0.0",
"jsdom": "^22.1.0",
"lodash.merge": "^4.6.2",
"mkdirp": "^2.1.4",
"ngrok": "^4.3.3",
"nodemon": "^2.0.20",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"sass": "^1.55.0",
"sync-request": "^6.1.0",
"yargs": "^17.6.2"
}
}