This repository has been archived by the owner on Sep 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
126 lines (126 loc) · 2.85 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"private": true,
"name": "force-vue-awakens",
"version": "1.0.0",
"description": "Every generation has a story",
"scripts": {
"test": "npm run unit && npm run e2e",
"unit": "jest",
"e2e": "wdio",
"build": "webpack",
"start": "webpack-dev-server",
"lint": "eslint --ext js,vue src test wdio.conf.js"
},
"author": "Ian Walter <[email protected]> (https://iankwalter.com)",
"dependencies": {
"unfetch": "^4.1.0",
"vue": "^2.5.16",
"vue-router": "^3.0.7",
"vuex": "^3.1.1"
},
"devDependencies": {
"@appjumpstart/launch": "^3.0.0",
"@ianwalter/eslint-config-vue": "^1.2.1",
"@ianwalter/renovate-config": "^1.1.1",
"@vue/test-utils": "^1.0.0-beta.29",
"@wdio/cli": "^5.12.1",
"@wdio/jasmine-framework": "^5.12.1",
"@wdio/local-runner": "^5.12.1",
"@wdio/selenium-standalone-service": "^5.12.1",
"@wdio/spec-reporter": "^5.12.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^3.2.0",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-webdriverio": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"node": "^12.8.1",
"url-loader": "^2.1.0",
"vue-jest": "^3.0.4",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.39.2",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"babel": {
"presets": [
[
"env",
{
"modules": false
}
],
"stage-2"
],
"plugins": [
"transform-runtime"
],
"env": {
"test": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
},
"jest": {
"testURL": "http://localhost:8080",
"transform": {
".+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
},
"eslintConfig": {
"root": true,
"parserOptions": {
"parser": "babel-eslint"
},
"env": {
"browser": true,
"jest/globals": true,
"webdriverio/wdio": true
},
"extends": [
"@ianwalter/vue"
],
"plugins": [
"jest",
"webdriverio"
],
"rules": {
"generator-star-spacing": "off",
"no-unused-expressions": 0
}
},
"renovate": {
"extends": [
"@ianwalter"
]
}
}