This repository has been archived by the owner on Nov 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
62 lines (62 loc) · 2.45 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
56
57
58
59
60
61
62
{
"private": true,
"description": "A modern front-end boilerplate for building fast, organized and standardized web apps or sites.",
"author": "Tonik <[email protected]> (http://tonik.pl)",
"version": "2.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",
"sass:fix": "cross-env NODE_ENV=development gulp sass:fix --gulpfile=build/build.js",
"javascript:lint": "cross-env NODE_ENV=production gulp javascript:lint --gulpfile=build/build.js",
"javascript:fix": "cross-env NODE_ENV=development gulp javascript:fix --gulpfile=build/build.js",
"lint": "npm run sass:lint && npm run javascript:lint"
},
"dependencies": {},
"devDependencies": {
"@tonik/eslint-config": "^1.1.1",
"@tonik/stylelint-config-scss": "^3.0.0",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^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.18.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-data": "^1.2.1",
"gulp-eslint": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.3.0",
"gulp-merge-json": "^1.2.0",
"gulp-notify": "^3.0.0",
"gulp-nunjucks-render": "^2.2.1",
"gulp-sass": "^3.1.0",
"gulp-stylelint": "^9.0.0",
"gulp-uglify": "^3.0.0",
"gulp-svgmin": "^2.2.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^7.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-plugin-json": "2.3",
"rollup-stream": "^1.24.1",
"stylelint": "^10.1.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}