-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 KB
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
{
"name": "basic-boilerplate",
"version": "1.0.0",
"description": "Basic boilerplate made w/ Gulp",
"main": "gulpfile.js",
"scripts": {
"start": "gulp watch",
"build": "gulp",
"clean": "gulp clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webMTD/basic-boilerplate.git"
},
"keywords": [
"boilerplate",
"gulp",
"prettier",
"postcss",
"precss",
"cssnext",
"less"
],
"author": "MTD",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.12",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-imagemin": "^7.1.0",
"gulp-less": "^4.0.1",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^1.3.2",
"postcss-preset-env": "^6.7.0",
"precss": "^4.0.0",
"prettier": "2.0.5"
},
"dependencies": {}
}