-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.04 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": "petstore",
"version": "0.1.0",
"private": true,
"description": "PetStore using Vue-Vuex",
"author": "Nehal Gajjar <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "NODE_ENV=test vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"jest": "NODE_ENV=test jest --coverage",
"jest:desc": "NODE_ENV=test jest --coverage --verbose",
"jest:watch": "NODE_ENV=test jest --watchAll --coverage",
"test:debug": "NODE_ENV=test node --inspect-brk node_modules/.bin/vue-cli-service test:unit --no-cache --watch --coverage --runInBand"
},
"dependencies": {
"axios": "0.20.0",
"babel-jest": "26.3.0",
"core-js": "^3.6.5",
"jest": "26.4.2",
"lodash": "4.17.20",
"logrocket": "1.0.12",
"logrocket-vuex": "0.0.3",
"moment": "2.27.0",
"vue": "2.6.12",
"vue-jest": "3.0.6",
"vue-router": "3.4.3",
"vuetify": "2.3.10",
"vuex": "3.5.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.11.5",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.3",
"axios-mock-adapter": "^1.18.2",
"babel-eslint": "^10.1.0",
"babel-plugin-root-import": "^6.5.0",
"eslint": "^6.7.2",
"eslint-loader": "2.1.2",
"eslint-plugin-jest": "24.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^1.19.1",
"vue-template-compiler": "^2.6.11"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
".*\\.(js)$": "babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
]
}
}