-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.83 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
{
"version": "1.0.0",
"name": "calendar",
"description": "Calendar editable",
"author": "[email protected]",
"license": "ISC",
"main": "index.js",
"scripts": {
"install:clean": "rm -rf node_modules package-lock.json",
"dependencies:fix": "npm install --package-lock-only --ignore-scripts && npx npm-force-resolutions",
"preinstall": "npm run install:clean && npm run dependencies:fix",
"deploy": "chmod +x ./deploy.sh && ./deploy.sh"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-transform-async-to-generator": "^7.25.7",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@babel/runtime": "^7.25.7",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.2",
"browser-sync": "^3.0.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-line-ending-corrector": "^1.0.3",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svg-sprites": "^4.1.2",
"gulp-uglify": "^3.0.2",
"sass": "^1.80.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-stream": "^7.0.0"
},
"resolutions": {
"async": "https://registry.npmjs.org/async/-/async-2.6.4.tgz",
"glob-parent": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
"js-yaml": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
"json5": "https://registry.npmjs.org/json5/-/json5-2.2.2.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
"lodash.template": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
"trim-newlines": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz"
},
"volta": {
"node": "14.21.3",
"npm": "6.14.18"
}
}