This repository was archived by the owner on Feb 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.41 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.41 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "exia",
"version": "0.3.0",
"description": "",
"main": "test.js",
"scripts": {
"gulp:serve": "gulp serve",
"clean": "rimraf ./dist",
"prestart": "yarn clean",
"start": "run-p webpack:watch gulp:serve",
"build:dev": "yarn clean && run-p gulp:build:dev webpack",
"build:prod": "yarn clean && run-p gulp:build:prod webpack:prod",
"build": "yarn build:prod",
"gulp:build:dev": "gulp build:dev",
"gulp:build:prod": "gulp build:prod",
"gulp:build": "yarn gulp:build:prod",
"image:optim:lossless": "gulp image:optim:lossless",
"webpack:dev": "webpack --mode=development",
"webpack:prod": "webpack --mode=production",
"webpack": "yarn webpack:prod",
"webpack:watch": "webpack --watch --mode=development",
"rm:node_modules": "rimraf ./node_modules",
"rm:dist": "rimraf ./dist",
"sassdoc": "sassdoc src/sass/**/* -v",
"stylelint-check": "stylelint-config-prettier-check",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check"
},
"author": {
"name": "Pedro Britto",
"email": "pedroivobritto@gmail.com",
"url": "https://pedrobritto.com"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"browser-sync": "^2.26.3",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^6.0.0",
"gulp-concat": "^2.6.1",
"gulp-connect-php": "^1.0.3",
"gulp-imagemin": "^5.0.3",
"gulp-sass": "^4.0.2",
"gulp-sass-glob": "^1.0.9",
"gulp-sourcemaps": "^2.6.5",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"stylelint": "^9.10.1",
"stylelint-config-prettier": "^5.0.0",
"stylelint-config-sass-guidelines": "^5.3.0",
"stylelint-order": "^2.1.0",
"stylelint-scss": "^3.5.4",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"normalize.css": "^8.0.1",
"smooth-scroll": "^16.0.0",
"swiper": "^4.5.0",
"vanilla-lazyload": "^12.0.0"
}
}