forked from tonik/wordpress-theme-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·55 lines (55 loc) · 2.03 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
52
53
54
55
{
"private": true,
"author": "Tonik <[email protected]> (http://tonik.pl)",
"version": "1.0.0",
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development gulp --gulpfile=build/build.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production gulp --gulpfile=build/build.js",
"watch": "npm run development && cross-env NODE_ENV=development gulp watch --gulpfile=build/build.js",
"images:production": "cross-env NODE_ENV=production gulp image --gulpfile=build/build.js",
"sass:lint": "cross-env NODE_ENV=production gulp sass:lint --gulpfile=build/build.js",
"javascript:lint": "cross-env NODE_ENV=production gulp javascript:lint --gulpfile=build/build.js",
"php:lint": "composer lint",
"lint": "npm run php:lint && npm run sass:lint && npm run javascript:lint",
"precommit": "npm run lint"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"browser-sync": "^2.18.13",
"cross-env": "^5.0.5",
"del": "^3.0.0",
"eslint": "^4.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-clean-css": "^3.9.0",
"gulp-eslint": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.3.0",
"gulp-notify": "^3.0.0",
"gulp-sass": "^3.1.0",
"gulp-stylelint": "^5.0.0",
"gulp-uglify": "^3.0.0",
"isdev": "^1.0.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-stream": "^1.24.1",
"@tonik/eslint-config": "^1.1.1",
"@tonik/stylelint-config-scss": "^2.0.0",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-scss": "^2.1.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}