-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-ts-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"start": "NODE_ENV=development webpack-dev-server",
"lint": "tslint 'src/**/*.ts{,x}' -p tsconfig.json",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"type": "tsc #",
"test": "jest",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint --fix",
"yarn lint",
"yarn type",
"git add"
]
},
"dependencies": {
"@material-ui/core": "^3.2.2",
"@material-ui/icons": "^3.0.1",
"@types/classnames": "^2.2.6",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"@types/react-helmet": "^5.0.7",
"@types/react-redux": "^6.0.7",
"@types/react-router-config": "^1.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/recompose": "^0.27.0",
"classnames": "^2.2.6",
"connected-react-router": "^5.0.1",
"firebase": "^5.5.8",
"formik": "^1.3.1",
"history": "^4.7.2",
"loadable-components": "^2.2.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-redux-firebase": "^2.2.4",
"react-router-config": "^4.4.0-beta.6",
"react-router-dom": "^4.3.1",
"recompose": "^0.30.0",
"redux": "^4.0.0",
"redux-firestore": "^0.5.8",
"redux-observable": "^1.0.0",
"redux-thunk": "^2.3.0",
"rxjs": "^6.3.3",
"typeface-roboto": "^0.0.54"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/dotenv": "^4.0.3",
"@types/enzyme": "^3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.8",
"@types/redux-mock-store": "^1.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-react-remove-properties": "^0.2.5",
"css-loader": "^1.0.1",
"dotenv": "^6.1.0",
"dotenv-webpack": "^1.5.7",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"file-loader": "^2.0.0",
"html-webpack-externals-plugin": "^3.8.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0",
"jest": "^23.6.0",
"lint-staged": "^8.0.0",
"mini-css-extract-plugin": "^0.4.4",
"prettier": "^1.14.3",
"redux-mock-store": "^1.5.3",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.1.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.3",
"webpack": "^4.23.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4",
"why-did-you-update": "^1.0.6"
},
"author": "",
"license": "ISC"
}