-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "magento2-vue-checkout",
"version": "1.0.0",
"description": "Magento 2 Checkout module based on Vue.js",
"main": "webpack.config.js",
"scripts": {
"dev": "webpack --watch",
"build": "webpack",
"lint": "eslint --ext .vue,.js view",
"test": "jest"
},
"jest": {
"moduleNameMapper": {
"^vue$": "vue/dist/vue.common.js",
"\\.(svg)$": "<rootDir>/node_modules/vue-svg-loader"
},
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
},
"dependencies": {
"axios": "^0.18.0",
"vue": "^2.4.4",
"vue-multiselect": "^2.1.0",
"vuelidate": "^0.7.4",
"vuex": "^3.0.0"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.5.0",
"jest": "^23.1.0",
"jest-vue-preprocessor": "^1.4.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"vue-loader": "^13.3.0",
"vue-svg-loader": "^0.5.0",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.7.1"
}
}