-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.51 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
{
"name": "deployer",
"version": "1.0.2",
"description": "",
"main": "src/index.tsx",
"scripts": {
"dev": "webpack-dev-server --open --config ./build-tools/webpack.dev.config.js",
"build": "rm -rf dist && webpack --config ./build-tools/webpack.build.config.js",
"lint": "eslint --config .eslintrc.json --ext .ts,.tsx --color src && tsc --pretty --noEmit",
"test": "jest"
},
"author": "",
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "^4.11.1",
"firebase": "^8.2.9",
"formik": "^2.2.5",
"notistack": "^1.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-query": "^2.26.3",
"react-router-dom": "^5.2.0",
"recoil": "0.0.13",
"styled-components": "^5.2.0",
"yup": "^0.31.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/node": "^14.11.1",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-material-ui-form-validator": "^2.1.0",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.3",
"@types/yup": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-inline-dotenv": "^1.6.0",
"babel-plugin-styled-components": "^1.11.1",
"css-loader": "^4.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.9.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^4.4.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^0.11.2",
"prettier": "^2.1.2",
"react-svg-loader": "^3.0.3",
"react-test-renderer": "^17.0.1",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"jest": {
"testEnvironment": "node"
}
}