-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 2.93 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
110
111
112
113
114
115
116
117
118
{
"name": "boilerplate-vanilla",
"author": "Katia Smet",
"scripts": {
"dev": "eleventy --config=.eleventy.js --serve",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build",
"build:server": "eleventy --config=.eleventy.js",
"preview": "vite preview",
"lint": "npm run lint:scripts && npm run lint:styles",
"lint:scripts": "eslint . --ext .js",
"lint:styles": "stylelint ./**/*.{css,scss}",
"format": "npm run format:scripts && npm run format:styles",
"format:scripts": "prettier . --write",
"format:styles": "stylelint ./**/*.{css,scss} --fix"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-vite": "^4.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"html-minifier": "^4.0.0",
"nodemon": "^3.0.1",
"postcss": "^8.4.24",
"prettier": "^3.0.3",
"sass": "^1.63.6",
"stylelint": "^15.10.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-prettier": "^4.0.2",
"tailwindcss": "^3.3.2",
"vite": "^4.3.9"
},
"dependencies": {
"dotenv": "^16.3.1"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:import/recommended",
"prettier"
],
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"rules": {
"import/namespace": null,
"import/order": [
"error",
{
"newlines-between": "always",
"groups": [
"external",
"builtin",
"internal",
"unknown",
"parent",
"index",
"sibling"
]
}
]
}
},
"prettier": {
"endOfLine": "auto",
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "es5",
"arrowParens": "always",
"htmlWhitespaceSensitivity": "strict",
"singleAttributePerLine": true,
"bracketSameLine": true,
"bracketSpacing": true,
"printWidth": 120
},
"stylelint": {
"plugins": [
"stylelint-prettier"
],
"extends": [
"stylelint-config-recommended",
"stylelint-config-sass-guidelines"
],
"overrides": [
{
"files": [
"**/*.scss"
],
"customSyntax": "postcss-scss"
}
],
"ignoreFiles": [
"dist/**/*",
"public/**/*"
],
"rules": {
"function-parentheses-space-inside": null,
"no-descending-specificity": null,
"max-nesting-depth": 2,
"selector-max-id": 1,
"color-hex-length": "long",
"scss/at-import-no-partial-leading-underscore": null,
"scss/no-global-function-names": null,
"scss/at-function-pattern": null
}
}
}