install webpack with typescript

This commit is contained in:
danbulant 2020-02-15 17:29:42 +01:00
parent 393b189f13
commit 59102a131f
2 changed files with 4380 additions and 27 deletions

4362
client/package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,35 +1,26 @@
{ {
"name": "client", "name": "client",
"version": "0.1.0", "version": "1.0.0",
"description": "Client application for Ester OS",
"private": true, "private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"mousetrap": "^1.6.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.3.1"
},
"scripts": { "scripts": {
"start": "react-scripts start", "start": "echo \"Working on it!\"",
"build": "react-scripts build", "build": "webpack",
"test": "react-scripts test", "dev": "echo \"Working on this!\""
"eject": "react-scripts eject"
}, },
"eslintConfig": { "keywords": [],
"extends": "react-app" "author": "Daniel Bulant",
"license": "GPLv3.0-or-later",
"devDependencies": {
"css-loader": "^3.4.2",
"file-loader": "^5.0.2",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}, },
"browserslist": { "dependencies": {
"production": [ "copy-webpack-plugin": "^5.1.1"
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
} }
} }