-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.6 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
{
"name": "popote",
"version": "1.0.0",
"description": "Your modern cookbook",
"main": "./frontend/index.js",
"scripts": {
"front:dev": "webpack-dev-server --config ./frontend/webpack.config.js --env=dev -d --hot --inline --progress --colors",
"back:dev": "python backend/launch_dev.py --db memory",
"back:dev:dockerdb": "python backend/launch_dev.py --db docker",
"start": "concurrently --kill-others \"yarn front:dev\" \"yarn back:dev\"",
"build": "webpack --config ./frontend/webpack.config.js --mode=production --progress",
"stats": "webpack --config ./frontend/webpack.config.js --json > stats.json"
},
"keywords": [
"React",
"webpack",
"Redux",
"Babel",
"ES6",
"prettier"
],
"author": "Domitille Dempuré & Lou-Yann Dehaine",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-jsx": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.8.3",
"@hot-loader/react-dom": "^16.11.0",
"babel-loader": "8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"compression-webpack-plugin": "3.1.0",
"concurrently": "5.1.0",
"css-loader": "3.4.2",
"eslint": "7.5.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "4.0.0",
"prettier": "^1.19.1",
"style-loader": "0.23.1",
"url-loader": "2.1.0",
"webpack": "4.37.0",
"webpack-cli": "3.3.10",
"webpack-dev-server": "4.0.0",
"webpack-hot-middleware": "2.25.1"
},
"dependencies": {
"@emotion/core": "^10.0.27",
"@instructure/uid": "^6.17.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material/typography": "4.0.0",
"connected-react-router": "6.7.0",
"dayjs": "1.8.33",
"history": "4.10.1",
"immutable": "3.8.1",
"lodash": "^4.17.21",
"prop-types": "15.7.2",
"react": "16.14.0",
"react-dom": "16.13.0",
"react-flexbox-grid": "2.1.2",
"react-redux": "7.2.0",
"react-router": "5.2.1",
"react-router-dom": "5.3.0",
"redux": "4.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-promise": "^0.6.0",
"redux-thunk": "2.3.0",
"seamless-immutable": "^7.1.3",
"zxcvbn": "^4.4.2"
}
}