-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
50 lines (50 loc) · 1.6 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
{
"name": "bitrix-project",
"version": "0.0.1",
"description": "BitrixCMS-based project's initial structure",
"main": "index.js",
"scripts": {
"encore": "encore",
"lint:scripts": "eslint \"local/assets/scripts/**/*.+(js|vue)\" ; exit 0",
"lint:styles": "stylelint \"local/assets/styles/**/*.scss\" ; exit 0",
"lint:php": "composer lint:php ; exit 0",
"fix:scripts": "eslint \"local/assets/scripts/**/*.+(js|vue)\" --fix; exit 0",
"fix:styles": "stylelint \"local/assets/styles/**/*.scss\" --fix ; exit 0",
"fix:php": "composer fix:php ; exit 0",
"dev": "encore dev",
"prod": "encore prod",
"watch": "encore dev --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/regiomedia/bitrix-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/regiomedia/bitrix-project/issues"
},
"homepage": "https://github.com/regiomedia/bitrix-project#readme",
"devDependencies": {
"@symfony/webpack-encore": "^0.20.1",
"autoprefixer": "^6.7.7",
"babel-eslint": "^7.2.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-vue": "^2.1.0",
"node-sass": "^4.9.3",
"sass-loader": "^6.0.6",
"stylelint": "^9.6.0",
"stylelint-config-sass-guidelines": "^5.2.0",
"stylelint-order": "^0.7.0",
"stylelint-scss": "^2.3.0",
"vue-loader": "^13.7.1",
"vue-template-compiler": "^2.5.13"
},
"dependencies": {
"vue": "^2.5.13"
}
}