-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
101 lines (101 loc) · 3.02 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
{
"name": "front-end-stack",
"version": "0.17.1",
"private": true,
"sideEffects": false,
"config": {
"context_root": "/",
"dist_uri": "/assets/",
"src_dir_path": "src/",
"test_dir_path": "src/**/*-spec.js",
"dist_dir_path": "dist/assets/",
"entry_file_path": "dist/index.html",
"report_dir_path": "reports/"
},
"scripts": {
"test": "node ./scripts/test",
"test:watch": "nodemon --exec 'yarn test'",
"build": "webpack",
"ci": "node ./scripts/ci",
"reinstall": "rimraf node_modules/ && yarn --network-timeout 1000000",
"start": "webpack-dev-server --config webpack.dev.config.js",
"stats": "webpack --profile --json > stats.json",
"flow": "flow --color always",
"flow:restart": "flow stop && yarn flow",
"prettier": "prettier --write '**/*.{js,json,md}'"
},
"dependencies": {
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@material-ui/styles": "4.10.0",
"classnames": "2.2.6",
"connected-react-router": "6.8.0",
"date-fns": "2.16.1",
"history": "4.10.1",
"immer": "7.0.8",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.1",
"react-router-dom": "5.2.0",
"recompose": "0.30.0",
"redux": "4.0.5",
"redux-observable": "1.2.0",
"reselect": "4.0.0",
"rxjs": "6.6.3",
"typeface-roboto": "0.0.75"
},
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "7.11.6",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-export-default-from": "7.10.4",
"@babel/polyfill": "7.11.5",
"@babel/preset-env": "7.11.5",
"@babel/preset-flow": "7.10.4",
"@babel/preset-react": "7.10.4",
"@babel/register": "7.11.5",
"autoprefixer": "9.8.6",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-istanbul": "6.0.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "5.0.2",
"css-loader": "4.2.2",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.4",
"eslint": "7.8.1",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-loader": "4.0.2",
"eslint-plugin-flowtype": "5.2.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",
"file-loader": "6.1.0",
"flow-bin": "0.133.0",
"html-webpack-plugin": "4.4.1",
"husky": "4.3.0",
"image-webpack-loader": "6.0.0",
"jsdom": "16.4.0",
"lint-staged": "10.3.0",
"mini-css-extract-plugin": "0.11.0",
"mocha": "8.1.3",
"mocha-junit-reporter": "2.0.0",
"nock": "13.0.4",
"nodemon": "2.0.4",
"nyc": "15.1.0",
"postcss-loader": "4.0.0",
"prettier": "2.1.1",
"react-test-renderer": "16.13.1",
"rimraf": "3.0.2",
"sinon": "9.0.3",
"url-loader": "4.1.0",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
}
}