-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
96 lines (96 loc) · 2.39 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
{
"name": "gerber-viewer",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 8080",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"ant-design-vue": "^3.2.12",
"buffer": "^6.0.3",
"events": "^3.3.0",
"fflate": "^0.7.3",
"file-saver": "^2.0.5",
"gerber-to-svg": "^4.2.8",
"lodash": "^4.17.21",
"pcb-stackup": "^4.2.8",
"pify": "^6.1.0",
"process": "^0.11.10",
"util": "^0.12.4",
"vue": "^3.2.39",
"whats-that-gerber": "^4.2.7"
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "^1.4.1",
"@types/file-saver": "^2.0.5",
"@types/lodash": "^4.14.185",
"@types/node": "^18.7.20",
"@types/pify": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/compiler-sfc": "^3.2.39",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.24.0",
"eslint-plugin-vue": "^9.5.1",
"sass": "^1.55.0",
"typescript": "^4.8.3",
"vite": "^3.1.3"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true
},
"extends": [
"eslint:recommended",
"plugin:vue/vue3-recommended",
"@vue/typescript/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/type-annotation-spacing": "warn",
"vue/max-attributes-per-line": [
"warn",
{
"singleline": {
"max": 3
}
}
],
"vue/singleline-html-element-content-newline": "off",
"vue/html-closing-bracket-newline": "off",
"vue/array-bracket-spacing": "warn",
"vue/arrow-spacing": "warn",
"vue/block-spacing": "warn",
"vue/comma-spacing": "warn",
"vue/key-spacing": [
"warn",
{
"beforeColon": false,
"afterColon": true
}
],
"vue/keyword-spacing": "warn",
"vue/object-curly-spacing": [
"warn",
"always"
],
"vue/prefer-template": "warn",
"vue/space-infix-ops": "warn",
"vue/space-unary-ops": "warn",
"vue/template-curly-spacing": "warn"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}