forked from netzstrategen/wordpress-shop-standards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 823 Bytes
/
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
{
"version": "1.44.3",
"title": "shop-standards",
"description": "Standard refinements for e-commerce websites.",
"dependencies": {
"@netzstrategen/gulp-task-collection": "^3.1.1"
},
"devDependencies": {
"@netzstrategen/eslint-config": "^1.0.1",
"@netzstrategen/stylelint-config": "^2.1.0",
"eslint-config-prettier": "^2.9.0",
"prettier": "^1.14.0"
},
"scripts": {
"watch": "gulp --concat false",
"build": "gulp build:production --concat false && gulp scripts styles --concat false"
},
"gulpPaths": {
"destDir": "./dist",
"scripts": {
"src": "./assets/scripts/**/*.js",
"dest": "./dist/scripts"
},
"styles": {
"srcDir": "./assets/styles",
"src": [
"./assets/styles/**/*.scss"
],
"dest": "./dist/styles"
}
}
}