-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
79 lines (79 loc) · 2.5 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "docker-symfony-vuejs",
"version": "0.1.0",
"description": "A Vue.js project",
"author": "Eleven Labs",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/elevan-labs/docker-symfony-vuejs"
},
"scripts": {
"dev": "NODE_ENV=dev webpack --config ./app/config/webpack.conf.js --devtool source-map --debug --watch --display-error-details",
"build": "NODE_ENV=production webpack --config ./app/config/webpack.conf.js --progress --colors --optimize-minimize",
"test": "NODE_ENV=testing jest --coverage",
"lint": "eslint --ext .js,.vue src && stylelint src/AppBundle/Resources/js/**/**/*.scss src/AppBundle/Resources/js/**/*.scss --fix",
"add-component": "./bin/add-component.sh"
},
"dependencies": {
"autoprefixer": "^7.1.4",
"babel-polyfill": "^6.23.0",
"extract-text-webpack-plugin": "^3.0.0",
"vue": "^2.3.3",
"webpack": "^3.4.1"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.3",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.22.0",
"babel-preset-vue": "^0.2.0",
"babel-register": "^6.22.0",
"css-loader": "^0.28.4",
"eslint": "^4.1.1",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-friendly-formatter": "^2.0.7",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.2.0",
"file-loader": "^0.11.2",
"friendly-errors-webpack-plugin": "^1.1.3",
"html-webpack-plugin": "^2.28.0",
"jest": "^20.0.4",
"jest-vue-preprocessor": "^1.0.1",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.0.0",
"stylelint-config-sass-guidelines": "^3.0.1",
"vue-loader": "^13.0.0",
"vue-template-compiler": "^2.3.4",
"webpack": "^3.4.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"jest": {
"moduleFileExtensions": ["js", "vue"],
"collectCoverageFrom": ["src/AppBundle/Resources/js/**/*.{js, vue}", "!**/app/**"],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"line": 70,
"statements": 70
}
},
"transform": {
"^.+\\.js$": "babel-jest",
".*\\.(vue)$": "jest-vue-preprocessor"
}
},
"browserslist": ["> 1%", "last 2 versions", "not ie <= 8"]
}