-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "portfolio",
"version": "0.0.1",
"description": "Web development portfolio",
"main": "script.js",
"scripts": {
"build": "npm run build:css && npm run build:js",
"build:css": "gulp buildSass",
"build:js": "babel src -d build",
"watch:css": "gulp watchSass",
"watch:js": "babel src -d build -w",
"lint:css": "npx stylelint '**/*.{css,scss}'",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:html": "npx hint .",
"lint:js": "npx eslint .",
"test": "npm run lint:js && npm run lint:css && npm run lint:html && echo '\u001b[32m' && echo '✅ All test approved!' && echo '\u001b[0m'"
},
"keywords": [
"html",
"css",
"gulp"
],
"author": {
"name": "Jorge Vargas",
"email": "jorgevargasla@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-sass": "^5.0.0",
"gulp-uglifycss": "^1.1.0",
"hint": "^6.1.4",
"sass": "^1.43.4",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^21.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.21.0"
},
"engines": {
"node": "*"
}
}