-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.44 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
127
128
129
130
131
132
133
{
"name": "calebroseland-com",
"version": "0.3.0",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit --ci --reporters=default --reporters=jest-junit",
"lint": "vue-cli-service lint"
},
"dependencies": {
"animate.css": "3.7.2",
"axios": "0.19.0",
"bulma": "0.8.0",
"core-js": "^3.4.8",
"element-ui": "2.13.0",
"lodash": "4.17.15",
"open-color": "1.7.0",
"register-service-worker": "1.6.2",
"vue": "2.6.10",
"vue-awesome": "4.0.2",
"vue-class-component": "7.1.0",
"vue-meta": "2.3.1",
"vue-property-decorator": "8.3.0",
"vue-router": "3.1.3",
"vuex": "3.1.2",
"vuex-persistedstate": "2.7.0"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.149",
"@types/webpack": "^4.41.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-plugin-pwa": "^4.1.1",
"@vue/cli-plugin-typescript": "^4.1.1",
"@vue/cli-plugin-unit-jest": "^4.1.1",
"@vue/cli-service": "4.1.1",
"@vue/eslint-config-prettier": "6.0.0",
"@vue/eslint-config-standard": "5.0.1",
"@vue/eslint-config-typescript": "5.0.1",
"@vue/test-utils": "1.0.0-beta.30",
"@babel/core": "7.7.5",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-plugin-component": "1.1.1",
"babel-plugin-lodash": "3.3.4",
"eslint": "6.7.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-vue": "6.0.1",
"fibers": "^4.0.2",
"jest-junit": "^10.0.0",
"node-sass": "4.13.0",
"pug": "2.0.4",
"pug-plain-loader": "1.0.0",
"sass": "1.23.7",
"sass-loader": "8.0.0",
"stylus": "0.54.7",
"stylus-loader": "3.0.2",
"ts-jest": "^24.2.0",
"typescript": "3.7.5",
"vue-template-compiler": "2.6.10"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard",
"@vue/typescript"
],
"rules": {
"space-before-function-paren": 0
},
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue",
"ts",
"tsx"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/",
"globals": {
"ts-jest": {
"babelConfig": true
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/calebroseland/calebroseland-com.git"
}
}