Add back in react & co
This commit is contained in:
parent
82fa543e43
commit
aa721767fa
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"indent_size": 2,
|
|
||||||
"html": {
|
|
||||||
"end_with_newline": true
|
|
||||||
}
|
|
||||||
}
|
|
9
.prettierrc
Normal file
9
.prettierrc
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# -*- yaml -*-
|
||||||
|
|
||||||
|
tabWidth: 4
|
||||||
|
bracketSameLine: true
|
||||||
|
|
||||||
|
overrides:
|
||||||
|
- files: "**/*.html"
|
||||||
|
options:
|
||||||
|
tabWidth: 2
|
|
@ -63,7 +63,6 @@
|
||||||
|
|
||||||
buildInputs = with pkgs.nodePackages; [
|
buildInputs = with pkgs.nodePackages; [
|
||||||
npm-check-updates
|
npm-check-updates
|
||||||
prettier
|
|
||||||
];
|
];
|
||||||
|
|
||||||
node_modules_attrs = {
|
node_modules_attrs = {
|
||||||
|
|
2658
package-lock.json
generated
2658
package-lock.json
generated
File diff suppressed because it is too large
Load diff
28
package.json
28
package.json
|
@ -11,28 +11,36 @@
|
||||||
"@fortawesome/fontawesome-free": "^6.1.1",
|
"@fortawesome/fontawesome-free": "^6.1.1",
|
||||||
"bulma": "^0.9.4",
|
"bulma": "^0.9.4",
|
||||||
"hack-font": "^3.3.0",
|
"hack-font": "^3.3.0",
|
||||||
"three": "^0.141.0"
|
"three": "^0.142.0",
|
||||||
|
"react": "^18.2.0",
|
||||||
|
"react-dom": "^18.2.0",
|
||||||
|
"react-redux": "^8.0.2",
|
||||||
|
"classnames": "^2.3.1",
|
||||||
|
"redux-act": "^1.8.0",
|
||||||
|
"redux": "4.2.0",
|
||||||
|
"immutability-helper": "3.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/preset-env": "^7.18.2",
|
"@babel/preset-env": "^7.18.6",
|
||||||
"@elm-tooling/elm-language-server": "^2.4.1",
|
"@parcel/transformer-sass": "^2.6.2",
|
||||||
"@parcel/transformer-elm": "^2.6.1",
|
"@types/react-dom": "^18.0.6",
|
||||||
"@parcel/transformer-sass": "^2.6.1",
|
|
||||||
"@types/three": "^0.141.0",
|
"@types/three": "^0.141.0",
|
||||||
"js-beautify": "^1.14.3",
|
"prettier": "^2.7.1",
|
||||||
"parcel": "^2.6.1",
|
"parcel": "^2.6.2",
|
||||||
"posthtml-extend": "^0.6.3",
|
"posthtml-extend": "^0.6.3",
|
||||||
"posthtml-favicons": "^1.3.0",
|
"posthtml-favicons": "^1.4.0",
|
||||||
"posthtml-include": "^1.7.4",
|
"posthtml-include": "^1.7.4",
|
||||||
"posthtml-markdownit": "^1.3.0",
|
"posthtml-markdownit": "^1.3.0",
|
||||||
"sass": "^1.52.3",
|
"sass": "^1.53.0",
|
||||||
|
"typescript": "^4.7.4",
|
||||||
|
"typescript-language-server": "^0.11.2",
|
||||||
"vscode-langservers-extracted": "^4.2.1"
|
"vscode-langservers-extracted": "^4.2.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "parcel build --no-autoinstall src/index.html && rename '.html' '.html.hbs' dist/browser/*.html",
|
"build": "parcel build --no-autoinstall src/index.html && rename '.html' '.html.hbs' dist/browser/*.html",
|
||||||
"serve": "parcel serve --no-autoinstall src/index.html",
|
"serve": "parcel serve --no-autoinstall src/index.html",
|
||||||
"watch": "parcel watch --no-autoinstall src/index.html",
|
"watch": "parcel watch --no-autoinstall src/index.html",
|
||||||
"build-dist": "parcel build --no-cache --no-autoinstall src/index.html; rename '.html' '.html.hbs' dist/browser/*.html"
|
"build-dist": "parcel build --no-cache --no-autoinstall src/index.html && rename '.html' '.html.hbs' dist/browser/*.html"
|
||||||
},
|
},
|
||||||
"targets": {
|
"targets": {
|
||||||
"browser": {
|
"browser": {
|
||||||
|
|
Reference in a new issue