-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.75 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
{
"name": "airport-schedule",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack",
"lint": "eslint ./src/**/*.ts & eslint ./src/**/*.tsx & stylelint ./src/**/*.scss",
"lint-fix": "eslint ./src/**/*.ts --fix & eslint ./src/**/*.tsx --fix & stylelint ./src/**/*.scss --fix"
},
"dependencies": {
"@babel/runtime": "^7.7.6",
"bootstrap": "^4.5.0",
"classnames": "^2.2.6",
"firebase": "^7.15.5",
"formik": "^2.1.4",
"lodash.chunk": "^4.2.0",
"react": "^16.12.0",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.12.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.3.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"yup": "^0.29.1"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.10.1",
"@types/classnames": "^2.2.10",
"@types/lodash-es": "^4.17.3",
"@types/lodash.chunk": "^4.2.6",
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"@types/react-combine-reducers": "^1.0.0",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.14",
"@types/react-router-dom": "^5.1.5",
"@types/react-transition-group": "^4.4.0",
"@types/yup": "^0.29.3",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^5.0.2",
"core-js": "^3.6.5",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"dotenv": "^8.2.0",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.2",
"source-map-loader": "^1.0.0",
"style-loader": "^0.23.1",
"stylelint": "^13.8.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.2.3",
"webpack-command": "^0.4.2",
"webpack-dev-server": "^3.2.1"
}
}