-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.54 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
{
"name": "landing-page",
"description": "A starter repo for building a static landing page",
"version": "1.1.0",
"homepage": "https://github.com/lukeharvey/landing-page",
"author": {
"name": "Luke Harvey",
"url": "https://lukeharvey.co.uk"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/lukeharvey/landing-page.git"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"autoprefixer": "^9.7.0",
"browser-sync": "^2.26.7",
"cssnano": "^4.1.10",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-load-plugins": "^2.0.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-stylelint": "^10.0.0",
"gulp-uglify": "^3.0.2",
"prettier": "^1.18.2",
"sanitize.css": "^11.0.0",
"stylelint": "^11.1.1",
"stylelint-config-prettier": "^6.0.0",
"stylelint-config-suitcss": "^14.0.0",
"stylelint-prettier": "^1.1.1"
},
"main": "gulpfile.js",
"scripts": {
"test": "gulp && git status | grep 'working directory clean' >/dev/null || (echo 'Please commit all changes generated by building'; exit 1)",
"stylelint": "stylelint \"src/sass/**/*.scss\" --syntax scss",
"eslint": "eslint src/js/modules",
"lint": "npm run stylelint && npm run eslint"
}
}