-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
109 lines (109 loc) · 2.18 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
102
103
104
105
106
107
108
109
{
"name": "Padstone",
"description": "A starter package for Craft 3 built by Imarc.",
"keywords": [
"craft",
"craft3",
"starter",
"imarc"
],
"homepage": "https://www.imarc.com",
"repository": "https://github.com/imarc/padstone.git",
"bugs": "https://github.com/imarc/padstone/issues",
"license": "Apache-2.0",
"version": "2.0.0",
"private": true,
"author": {
"name": "Kevin Hamer",
"email": "[email protected]"
},
"contributors": [
{
"name": "Jeff Turcotte",
"email": "[email protected]"
},
{
"name": "Chandler Blum",
"email": "[email protected]"
},
{
"name": "Shawna O'Neal",
"email": "[email protected]"
},
{
"name": "Kerri Cranwell",
"email": "[email protected]"
},
{
"name": "Dan Collins",
"email": "[email protected]"
},
{
"name": "Bill Bushee",
"email": "[email protected]"
}
],
"dependencies": {
"imarc-boilerplate": "^6.0"
},
"scripts": {
"lint": "eslint resources",
"fractal": "fractal",
"dev": "vite",
"preview": "vite preview",
"prod": "vite build",
"build": "vite build && fractal build"
},
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.1.0"
},
"browserslist": [
"defaults"
],
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"extends": [
"plugin:vue/vue3-recommended",
"standard"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"vue"
],
"rules": {
"comma-dangle": [
"warn",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "never",
"exports": "never",
"functions": "never"
}
],
"indent": [
"warn",
4
],
"vue/html-indent": [
"warn",
4
]
}
}
}