Make all dependencies normal dependencies
Apparently "dev dependencies" are only supposed to be things that are required at run time for dev things, *not* things like typescript that don't end up on the website. buildDependencies would be nice, but that is not this.
This commit is contained in:
parent
c08106fafd
commit
b3f799507d
|
@ -5,7 +5,7 @@
|
|||
"author": "Tristan Maat <tm@tlater.net>",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"dependencies": {
|
||||
"@babel/preset-env": "^7.8.4",
|
||||
"@types/jquery": "^3.3.33",
|
||||
"jstransformer-markdown-it": "^2.1.0",
|
||||
|
@ -13,9 +13,7 @@
|
|||
"posthtml-favicons": "^1.3.0",
|
||||
"pug": "^2.0.4",
|
||||
"sass": "^1.25.0",
|
||||
"typescript-language-server": "^0.4.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"typescript-language-server": "^0.4.0",
|
||||
"@fortawesome/fontawesome-free": "^5.12.1",
|
||||
"@types/react": "^16.9.23",
|
||||
"@types/react-redux": "^7.1.7",
|
||||
|
|
Reference in a new issue