Skip to content

Commit b06c52b

Browse files
authored
Merge pull request #155 from ebarriosara/feature/19_login_start
Feature/19 login start
2 parents dd00154 + f84ae55 commit b06c52b

46 files changed

Lines changed: 1696 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"presets": [
3+
[
4+
"env",
5+
{
6+
"modules": false
7+
}
8+
]
9+
]
10+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "react-typescript-samples",
3+
"version": "1.0.0",
4+
"description": "Sample working with React,TypeScript and Webpack)",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1",
8+
"start": "webpack-dev-server --mode development --inline --hot --open",
9+
"build": "webpack --mode development"
10+
},
11+
"author": "",
12+
"license": "ISC",
13+
"devDependencies": {
14+
"@material-ui/core": "^3.9.0",
15+
"@material-ui/icons": "^3.0.2",
16+
"@types/react": "^16.4.7",
17+
"@types/react-dom": "^16.0.6",
18+
"@types/react-router-dom": "^4.3.0",
19+
"@types/toastr": "^2.1.35",
20+
"awesome-typescript-loader": "^5.2.0",
21+
"babel-core": "^6.26.3",
22+
"babel-preset-env": "^1.7.0",
23+
"css-loader": "^1.0.0",
24+
"file-loader": "^1.1.11",
25+
"html-webpack-plugin": "^3.2.0",
26+
"mini-css-extract-plugin": "^0.4.1",
27+
"style-loader": "^0.21.0",
28+
"url-loader": "^1.0.1",
29+
"webpack": "^4.16.2",
30+
"webpack-cli": "^3.1.0",
31+
"webpack-dev-server": "^3.1.5"
32+
},
33+
"dependencies": {
34+
"bootstrap": "^4.1.2",
35+
"lc-form-validation": "^1.0.0",
36+
"react": "16.7.0-alpha.0",
37+
"react-dom": "16.7.0-alpha.0",
38+
"react-router-dom": "^4.2.2",
39+
"toastr": "^2.1.4",
40+
"typescript": "^3.0.1"
41+
}
42+
}

0 commit comments

Comments
 (0)