forked from jbgust/meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.83 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
{
"name": "meteor",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"ci": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --mode ci",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
"lint": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service lint",
"test:unit": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service test:unit"
},
"dependencies": {
"@amcharts/amcharts4": "^4.10.36",
"ajv": "^6.10.2",
"axios": "1.4.0",
"core-js": "^2.6.12",
"deep-equal": "^2.2.1",
"jwt-decode": "^3.1.2",
"vue": "^2.7.14",
"vue-router": "^3.0.7",
"vuetify": "2.6.15",
"vuex": "^3.5.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-plugin-unit-jest": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.3.5",
"@webpack-cli/info": "^0.1.6",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"cypress": "^12.12.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"jest": "^24.7.1",
"jest-junit": "^6.3.0",
"obsolete-webpack-plugin": "^0.5.6",
"sass": "^1.62.1",
"sass-loader": "^7.3.1",
"vue-cli-plugin-vuetify": "0.6.3",
"vue-template-compiler": "^2.7.14",
"vuetify-loader": "^1.9.2",
"webpack-cli": "^3.3.6"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {
"indent": [
"error",
4
],
"space-before-function-paren": [
"error",
{
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}
]
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"defaults",
"last 6 versions",
"not ie <= 11"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"mjs",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.(mjs|jsx?)$": "babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"axios": "axios/dist/node/axios.cjs"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/",
"reporters": [
"default",
"jest-junit"
]
}
}