This repository was archived by the owner on Jul 8, 2019. 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
110 lines (110 loc) · 4.51 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 4.51 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "breda-voor-elkaar",
"version": "1.0.0",
"author": "Bytecode Digital Agency B.V. <info@bytecode.nl>",
"homepage": "https://bytecode.nl",
"private": false,
"browserslist": [
">1%",
"last 2 versions",
"android 4",
"opera 12"
],
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"no-empty-source": null,
"font-family-no-missing-generic-family-keyword": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extend",
"at-root",
"debug",
"warn",
"error",
"if",
"else",
"for",
"each",
"while",
"mixin",
"include",
"content",
"return",
"function"
]
}
]
}
},
"scripts": {
"build": "webpack --progress --config resources/assets/build/webpack.config.js",
"build:production": "webpack --progress -p --config resources/assets/build/webpack.config.js",
"build:profile": "webpack --progress --profile --json --config resources/assets/build/webpack.config.js",
"start": "webpack --hide-modules --watch --config resources/assets/build/webpack.config.js",
"rmdist": "rimraf dist",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint resources/assets/scripts resources/assets/build",
"lint:scripts:fix": "eslint resources/assets/scripts resources/assets/build --fix",
"lint:styles": "stylelint \"resources/assets/styles/**/*.{css,sass,scss,sss,less}\"",
"lint:styles:fix": "stylelint \"resources/assets/styles/**/*.{css,sass,scss,sss,less}\" --fix",
"test": "npm run -s lint",
"ls:dist": "pscp -P 7685 -r -ls bredabc@bytedev.nl:/home/bredabc/public_html/wp-content/themes/breda-voor-elkaar/dist",
"sync:app": "pscp -P 7685 -r ./app/*.* bredabc@bytedev.nl:/home/bredabc/public_html/wp-content/themes/breda-voor-elkaar/app",
"sync:views": "pscp -P 7685 -r ./resources/views/*.* bredabc@bytedev.nl:/home/bredabc/public_html/wp-content/themes/breda-voor-elkaar/resources/views",
"sync:assets": "pscp -P 7685 -r ./dist/*.* bredabc@bytedev.nl:/home/bredabc/public_html/wp-content/themes/breda-voor-elkaar/dist",
"sync:function": "pscp -P 7685 -r ./resources/function.php bredabc@bytedev.nl:/home/bredabc/public_html/wp-content/themes/breda-voor-elkaar/resources"
},
"devDependencies": {
"autoprefixer": "~8.2.0",
"browser-sync": "~2.23.6",
"browsersync-webpack-plugin": "^0.6.0",
"bs-html-injector": "~3.0",
"buble-loader": "^0.4.1",
"cache-loader": "~1.2.0",
"clean-webpack-plugin": "^0.1.18",
"copy-globs-webpack-plugin": "^0.2.0",
"css-loader": "^0.28.9",
"cssnano": "~v4.0.0-rc.2",
"eslint": "~4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "~1.9",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jquery": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"extract-text-webpack-plugin": "~3.0.2",
"file-loader": "^1.1.6",
"friendly-errors-webpack-plugin": "^1.6.1",
"imagemin-mozjpeg": "~7.0.0",
"imagemin-webpack-plugin": "~2.1.1",
"import-glob": "~1.5",
"node-sass": "~4.8.3",
"postcss-loader": "~2.1.0",
"postcss-safe-parser": "~3.0",
"prettier": "^1.12.1",
"prettierrc": "^0.0.0-5",
"resolve-url-loader": "~2.3.0",
"rimraf": "~2.6",
"sass-loader": "~6.0",
"style-loader": "^0.20.1",
"stylelint": "^8.4.0",
"stylelint-config-standard": "~18.2.0",
"stylelint-webpack-plugin": "^0.10.1",
"url-loader": "^0.6.2",
"webpack": "~3.10.0",
"webpack-assets-manifest": "^1.0.0",
"webpack-dev-middleware": "~2.0.4",
"webpack-hot-middleware": "~2.22.0",
"webpack-merge": "~4.1.1",
"yargs": "~11.0.0"
},
"dependencies": {
"bootstrap": "^v4.1.2",
"jquery": "^3.3.1",
"popper.js": "^1.14.3"
}
}