-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
{
"name": "nadyui",
"version": "0.1.0-rc.1",
"author": "Jens Reidel <[email protected]>",
"homepage": "https://github.com/Nadybot/nadyui",
"bugs": "https://github.com/Nadybot/nadyui/issues",
"repository": "github:Nadybot/nadyui",
"license": "BSD-3-Clause",
"scripts": {
"serve": "vue-cli-service serve",
"build-dev": "vue-cli-service build --mode development",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@types/bootstrap": "^5.2.6",
"bootstrap": "^5.2.3",
"ts.data.json": "^2.2.0",
"vue": "^3.3.4",
"vue-router": "^4.2.1",
"vuejs-smart-table": "git+https://github.com/Gelbpunkt/vuejs-smart-table.git",
"vuex": "^4.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-plugin-vuex": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.3.4",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.14.1",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"sass-loader": "^13.3.0",
"typescript": "^5.0.4"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
],
"vue/multi-word-component-names": "off"
}
},
"browserslist": [
"last 2 years"
]
}