-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
104 lines (104 loc) · 2.81 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
{
"name": "prefetchalyzer",
"version": "0.1.1",
"private": true,
"scripts": {
"start": "npm run serve",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test": "env TS_NODE_PROJECT=\"tsconfig.json\" mocha -r ts-node/register -r tsconfig-paths/register -r jsdom-global/register -r esm 'src/tests/init.spec.ts'"
},
"dependencies": {
"@material/chips": "^14.0.0",
"@menadevs/objectron": "^0.1.14",
"core-js": "^3.8.0",
"register-service-worker": "^1.7.1",
"vue": "^2.6.11",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^8.4.2",
"webpack": "^5.82.1"
},
"devDependencies": {
"@material/button": "^14.0.0",
"@material/checkbox": "^14.0.0",
"@material/data-table": "^14.0.0",
"@material/dialog": "^14.0.0",
"@material/feature-targeting": "^14.0.0",
"@material/menu": "^14.0.0",
"@material/snackbar": "^14.0.0",
"@material/tab-bar": "^14.0.0",
"@material/textfield": "^14.0.0",
"@material/theme": "^14.0.0",
"@material/typography": "^14.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-pwa": "~5.0.8",
"@vue/cli-plugin-typescript": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^5.0.2",
"chai": "^4.2.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^6.2.2",
"esm": "^3.2.25",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"sass": "^1.29.0",
"sass-loader": "^8.0.2",
"ts-mocha": "^7.0.0",
"ts-node": "^9.1.0",
"tsconfig-paths": "^3.9.0",
"typescript": "~4.4.4",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard",
"@vue/typescript/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"space-before-function-paren": [
"error",
"never"
],
"no-useless-escape": 0,
"@typescript-eslint/triple-slash-reference": 0
},
"overrides": [
{
"files": [
"*.spec.ts"
],
"rules": {
"no-useless-escape": 0,
"@typescript-eslint/camelcase": 0,
"no-unused-expressions": 0
}
}
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}