-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.11 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
{
"name": "complete-javascript-course",
"version": "1.0.0",
"description": "Vanilla JavaScript course by Jonas Schmedtmann",
"main": "gulpfile.babel.js",
"repository": "[email protected]:YewTreeWeb/complete-javascript-course.git",
"author": "Mathew Teague <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint src/js/**/*.js",
"lint:fix": "eslint --fix src/js/**/*.js",
"p": "prettier --write 'src/**/*.js'",
"p:w": "onchange 'src/js/**/*.js' -- prettier --write {{changed}}",
"webpack": "webpack -config=webpack.config.js"
},
"dependencies": {
"airbnb-browser-shims": "^3.3.0",
"bulma": "^0.8.2",
"codyhouse-framework": "^2.6.2",
"date-fns": "^2.12.0",
"include-media": "^1.4.9",
"system-font-css": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.2",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"babel-preset-airbnb": "^5.0.0",
"browser-sync": "^2.26.7",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"gulp": "^4.0.2",
"gulp-cache": "^1.1.3",
"gulp-changed": "^4.0.2",
"gulp-cheerio": "^1.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-csscomb": "^3.1.0",
"gulp-cssimport": "^7.0.0",
"gulp-ext-replace": "^0.3.0",
"gulp-group-css-media-queries": "^1.2.2",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-load-plugins": "^2.0.3",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.2",
"gulp-sass-glob": "^1.1.0",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-svgmin": "^2.2.0",
"gulp-uglify": "^3.0.2",
"imagemin-giflossy": "^5.1.10",
"imagemin-guetzli": "^2.0.0",
"imagemin-jpeg-recompress": "^6.0.0",
"imagemin-jpegtran": "^6.0.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^8.0.0",
"imagemin-svgo": "^7.1.0",
"imagemin-webp": "^5.1.0",
"imagemin-zopfli": "^6.0.0",
"merge-stream": "^2.0.0",
"prettier": "^2.0.5",
"read-yaml": "^1.1.0",
"rucksack-css": "^1.0.2",
"shelljs": "^0.8.3",
"stylelint": "^13.3.3",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-scss": "^3.17.1",
"terser-webpack-plugin": "^2.3.5",
"through2": "^3.0.1",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"vinyl-buffer": "^1.0.1",
"vinyl-named": "^1.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-stream": "^5.2.1",
"yargs": "^15.3.1"
},
"browserslist": [
"last 2 version",
"> 1%",
"IE 10"
]
}