added matomo and moved to yarn & parcel

This commit is contained in:
cupcakearmy
2019-12-12 05:58:39 +01:00
parent b4a8cf2fd2
commit a45d6ab01a
10 changed files with 48 additions and 120 deletions

View File

@@ -1,35 +1,22 @@
{
"private": true,
"scripts": {
"build:dev": "webpack -d",
"build:dev:watch": "webpack -d -w",
"build:prod": "webpack -p",
"build:prod:watch": "webpack -p -w",
"dev": "webpack-dev-server -d"
"build": "parcel build ./src/index.html",
"dev": "parcel ./src/index.html"
},
"dependencies": {
"animejs": "~3",
"react": "~16",
"react-dom": "~16",
"react-router-dom": "~5"
"animejs": "3.x",
"parcel-bundler": "1.x",
"react": "16.12.x",
"react-dom": "16.12.x",
"react-router-dom": "5.x"
},
"devDependencies": {
"@types/animejs": "3",
"@types/react": "~16",
"@types/react-dom": "~16",
"@types/react-router-dom": "~4",
"awesome-typescript-loader": "~5",
"copy-webpack-plugin": "~5",
"css-loader": "~3",
"file-loader": "~4",
"html-webpack-plugin": "~3",
"mini-css-extract-plugin": "~0",
"style-loader": "~1",
"stylus": "~0",
"stylus-loader": "~3",
"typescript": "~3",
"webpack": "~4",
"webpack-cli": "~3",
"webpack-dev-server": "~3"
"@types/animejs": "3.x",
"@types/react": "16.9.x",
"@types/react-dom": "16.9.x",
"@types/react-router-dom": "5.x",
"stylus": "0.54.x",
"typescript": "3.7.x"
}
}
}