This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.5 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
{
"name": "f3-maba",
"version": "1.1.0",
"private": true,
"scripts": {
"serve": "./node_modules/.bin/vue-cli-service serve",
"build": "./node_modules/.bin/vue-cli-service build",
"lint": "./node_modules/.bin/vue-cli-service lint",
"start": "node server/index.js",
"watch": "./node_modules/.bin/vue-cli-service build --watch"
},
"dependencies": {
"@kyvg/vue3-notification": "^2.7.0",
"axios": "^1.2.0",
"body-parser": "^1.20.1",
"core-js": "^3.26.1",
"express": "^4.18.2",
"lodash": "^4.17.21",
"luxon": "^3.1.1",
"numeral": "^2.0.6",
"pg": "^8.7.1",
"uuid": "^9.0.0",
"vue": "^3.2.45",
"vue-router": "^4.1.6",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.2.45",
"eslint": "^8.29.0",
"eslint-plugin-vue": "^9.8.0",
"sass": "^1.56.1",
"sass-loader": "^13.2.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"vue/multi-word-component-names": [
"error",
{
"ignores": [
"Burpees",
"Stats"
]
}
]
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}