Update project
This commit is contained in:
parent
a8a3a5093a
commit
3cf5b14913
5 changed files with 12598 additions and 700 deletions
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"trailingComma": "es5",
|
"trailingComma": "es5",
|
||||||
"tabWidth": 2,
|
|
||||||
"printWidth": 90,
|
"printWidth": 90,
|
||||||
|
"tabWidth": 2,
|
||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"endOfLine": "lf"
|
"endOfLine": "lf",
|
||||||
|
"importOrder": ["^[./]", ".*", ".scss$"],
|
||||||
|
"importOrderSeparation": true,
|
||||||
|
"importOrderSortSpecifiers": true
|
||||||
}
|
}
|
||||||
|
|
|
||||||
14
.vscode/settings.json
vendored
14
.vscode/settings.json
vendored
|
|
@ -1,12 +1,15 @@
|
||||||
{
|
{
|
||||||
"cSpell.words": [
|
"cSpell.words": [
|
||||||
"EEPROM",
|
|
||||||
"Glsl",
|
|
||||||
"andras",
|
"andras",
|
||||||
|
"astra",
|
||||||
|
"colour",
|
||||||
|
"colours",
|
||||||
"decla",
|
"decla",
|
||||||
|
"EEPROM",
|
||||||
"favicons",
|
"favicons",
|
||||||
"forex",
|
"forex",
|
||||||
"froms",
|
"froms",
|
||||||
|
"Glsl",
|
||||||
"leds",
|
"leds",
|
||||||
"linkedin",
|
"linkedin",
|
||||||
"mesmerising",
|
"mesmerising",
|
||||||
|
|
@ -24,5 +27,8 @@
|
||||||
"webm",
|
"webm",
|
||||||
"webp",
|
"webp",
|
||||||
"youtube"
|
"youtube"
|
||||||
]
|
],
|
||||||
}
|
"files.exclude": {
|
||||||
|
"node_modules": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
7454
package-lock.json
generated
7454
package-lock.json
generated
File diff suppressed because it is too large
Load diff
13
package.json
13
package.json
|
|
@ -4,8 +4,9 @@
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "webpack serve --open --mode development",
|
"start": "webpack serve --open --mode development",
|
||||||
"lint": "npx eslint --fix \"src/**/*.ts\" && npx prettier --write \"src/**/*.(ts|scss|json|html)\"",
|
"lint": "eslint --fix \"src/**/*.ts\" && prettier --write \"src/**/*.(ts|scss|json|html)\"",
|
||||||
"build": "webpack --mode production"
|
"build": "webpack --mode production",
|
||||||
|
"update": "ncu"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
@ -29,8 +30,10 @@
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/schmelczerandras/timeline#readme",
|
"homepage": "https://github.com/schmelczerandras/timeline#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
||||||
"css-loader": "^6.5.1",
|
"css-loader": "^6.5.1",
|
||||||
|
"eslint": "^8.23.1",
|
||||||
"eslint-config-prettier": "^8.3.0",
|
"eslint-config-prettier": "^8.3.0",
|
||||||
"eslint-plugin-prettier": "^4.0.0",
|
"eslint-plugin-prettier": "^4.0.0",
|
||||||
"eslint-plugin-unused-imports": "^2.0.0",
|
"eslint-plugin-unused-imports": "^2.0.0",
|
||||||
|
|
@ -38,15 +41,17 @@
|
||||||
"html-webpack-plugin": "^5.5.0",
|
"html-webpack-plugin": "^5.5.0",
|
||||||
"inline-source-webpack-plugin": "^2.0.1",
|
"inline-source-webpack-plugin": "^2.0.1",
|
||||||
"mini-css-extract-plugin": "^2.5.2",
|
"mini-css-extract-plugin": "^2.5.2",
|
||||||
|
"npm-check-updates": "^16.1.3",
|
||||||
"prettier": "^2.5.1",
|
"prettier": "^2.5.1",
|
||||||
"resolve-url-loader": "^5.0.0",
|
"resolve-url-loader": "^5.0.0",
|
||||||
"responsive-loader": "^2.3.0",
|
"responsive-loader": "^2.3.0",
|
||||||
"sass": "^1.49.0",
|
"sass": "^1.49.0",
|
||||||
"sass-loader": "^12.4.0",
|
"sass-loader": "^12.4.0",
|
||||||
"sharp": "^0.29.3",
|
"sharp": "^0.31.0",
|
||||||
"string-replace-loader": "^3.1.0",
|
"string-replace-loader": "^3.1.0",
|
||||||
"svg-inline-loader": "^0.8.2",
|
"svg-inline-loader": "^0.8.2",
|
||||||
"ts-loader": "^9.2.6",
|
"ts-loader": "^9.3.1",
|
||||||
|
"ts-node": "^10.8.1",
|
||||||
"typescript": "^4.5.5",
|
"typescript": "^4.5.5",
|
||||||
"webpack": "^5.67.0",
|
"webpack": "^5.67.0",
|
||||||
"webpack-cli": "^4.9.1",
|
"webpack-cli": "^4.9.1",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue