-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 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
{
"name": "text",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">= 14.17.1"
},
"scripts": {
"serve:dev": "cross-env NODE_ENV=development dotenv -e .env.dev.serve vue-cli-service serve",
"serve:online": "cross-env NODE_ENV=online dotenv -e .env.online.serve vue-cli-service serve",
"build:dev": "cross-env NODE_ENV=development dotenv -e .env.dev.build vue-cli-service build",
"build:online": "cross-env NODE_ENV=production dotenv -e .env.online.build vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@icon-park/vue": "^1.3.5",
"axios": "^0.26.1",
"babel-plugin-component": "^1.1.1",
"babel-plugin-import": "^1.13.3",
"core-js": "^3.6.5",
"dotenv-cli": "^5.0.0",
"nprogress": "^0.2.0",
"register-service-worker": "^1.7.2",
"throttle-debounce-ts": "^1.1.1",
"vue": "^2.6.11",
"vue-bus-ts": "^1.0.8",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.2.0",
"vuex": "^3.4.0",
"webpackbar": "^5.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/jest": "^27.4.1",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-e2e-cypress": "~4.5.15",
"@vue/cli-plugin-pwa": "~4.5.15",
"@vue/cli-plugin-router": "~4.5.15",
"@vue/cli-plugin-typescript": "~4.5.15",
"@vue/cli-plugin-unit-mocha": "~4.5.15",
"@vue/cli-plugin-vuex": "~4.5.15",
"@vue/cli-service": "~4.5.15",
"@vue/test-utils": "^1.0.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-polyfill": "^6.26.0",
"chai": "^4.1.2",
"cross-env": "^7.0.3",
"dayjs": "^1.10.7",
"dotenv-cli": "^5.0.0",
"element-ui": "^2.10.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"ionicons": "^4.5.9-1",
"node-sass": "^4.12.0",
"qs": "^6.10.3",
"sass-loader": "^8.0.2",
"ts-import-plugin": "^1.6.6",
"typescript": "~4.1.5",
"vant": "^2.12.44",
"vue-template-compiler": "^2.6.11",
"vue-tsx-support": "^3.2.0",
"webpack-merge": "^5.8.0",
"webpackbar": "^5.0.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"mocha": true
}
}
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}