-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.35 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
{
"name": "vue3",
"version": "0.1.0",
"private": true,
"scripts": {
"test": "yarn lint && yarn cypress open-ct --browser firefox",
"test:chrome": "yarn lint && yarn cypress open-ct --browser chrome",
"test:headless": "yarn lint && yarn cypress run-ct",
"lint": "yarn run eslint --ext .ts --ext .vue src/",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build"
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^3.0.0",
"vue-class-component": "^8.0.0-0",
"vue-router": "^3.5.3",
"vuex": "^3.6.2"
},
"devDependencies": {
"@cypress/vue": "^3.0.5",
"@cypress/webpack-dev-server": "^1.7.0",
"@types/jest": "^27.0.3",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"babel-eslint": "^10.1.0",
"css-loader": "^6.5.1",
"cypress": "^9.1.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-vue": "^7.0.0",
"sass": "^1.45.2",
"sass-loader": "10.1.1",
"typescript": "^4.5.2",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"parserOptions": {
"parser": "babel-eslint"
},
"extends": [
"airbnb-base",
"plugin:vue/vue3-essential"
],
"rules": {
"no-restricted-exports": "off",
"no-loss-of-precision": "off",
"no-promise-executor-return": "off",
"no-unreachable-loop": "off",
"no-unsafe-optional-chaining": "off",
"no-useless-backreference": "off",
"default-case-last": "off",
"no-nonoctal-decimal-escape": "off",
"import/extensions": "off",
"class-methods-use-this": "off",
"import/no-unresolved": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}