-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
executable file
·70 lines (70 loc) · 2.08 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
{
"name": "gulp4-boilerplate",
"version": "0.1.0",
"description": "frontend project template based on gulp, es6 and scss",
"author": "",
"email": "",
"private": true,
"engines": {
"node": ">=12.16.1",
"npm": ">=6.14.2"
},
"scripts": {
"build": "gulp build",
"dev": "gulp",
"esdoc": "./node_modules/.bin/esdoc",
"format": "prettier --write \"static/**/*.{scss,js}\"",
"lint:scss": "stylelint 'static/**/*.scss'"
},
"repository": {
"type": "git",
"url": ""
},
"browserslist": [
"> 0.5%",
"last 2 versions"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@namics/stylelint-bem": "^6.3.0",
"babelify": "^10.0.0",
"browser-sync": "^2.26.7",
"browserify": "^16.5.1",
"del": "^5.1.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"esm": "^3.2.25",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"prettier": "^2.0.4",
"stylelint": "^13.3.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.16.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"gsap": "^3.2.6",
"pixi.js": "^5.2.1",
"poly-fluid-sizing": "^1.1.0",
"scrollmagic": "^2.0.7",
"scrollscene": "0.0.15",
"swiper": "^5.3.7"
}
}