-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (114 loc) · 3.1 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
{
"name": "jonathans-movies-client",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"report": "ANALYZE=TRUE vue-cli-service build --report "
},
"dependencies": {
"@feathersjs/client": "^4.5.14",
"@sentry/tracing": "^6.19.7",
"@sentry/vue": "^6.19.7",
"@vue/composition-api": "^1.5.0",
"core-js": "^3.22.2",
"feathers-hooks-common": "^5.0.5",
"feathers-vuex": "https://github.com/arranf/feathers-vuex.git#1.x",
"humanize-duration": "^3.27.1",
"lazysizes": "^5.3.2",
"lodash": "^4.17.13",
"regenerator-runtime": "^0.13.9",
"sass": "^1.51.0",
"socket.io-client": "^2.1.1",
"vue": "^2.5.17",
"vue-router": "^3.5.1",
"vuelidate": "^0.7.7",
"vuetify": "^1.5.12",
"vuex": "^3.6.2",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.4",
"@vue/cli-plugin-e2e-nightwatch": "~5.0.4",
"@vue/cli-plugin-eslint": "~5.0.4",
"@vue/cli-plugin-pwa": "~5.0.4",
"@vue/cli-plugin-unit-jest": "~5.0.4",
"@vue/cli-service": "~5.0.4",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"@vue/vue2-jest": "^27.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"critters-webpack-plugin": "^2.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^8.0.3",
"jest": "^27.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"sass-loader": "^12.6.0",
"stylus": "^0.57.0",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-vuetify": "~2.4.8",
"vue-template-compiler": "^2.5.17",
"vuetify-loader": "^1.7.3",
"webpack-bundle-analyzer": "^4.5.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"last 2 versions",
"iOS >= 8",
"not ie <= 8"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.jsx?$": "babel-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/",
"debug": "node --inspect-brk ./node_modules/.bin/vue-cli-service test:unit"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint"
],
"*.vue": [
"vue-cli-service lint"
]
}
}