-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
108 lines (108 loc) · 3.65 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
105
106
107
108
{
"name": "seven23",
"version": "2.0.1",
"description": "seven23",
"scripts": {
"start": "webpack-dev-server --config webpack-dev-server.config.js",
"test": "npx jest --coverage",
"build": "webpack --config webpack-production.config.js;cp build/index.html build/404.html; cp build/index.html build/401.html",
"build:no-progress": "webpack --config webpack-production.config.js;cp build/index.html build/404.html; cp build/index.html build/401.html",
"serve:build": "npx http-server ./build -s -H localhost -p 8080 ",
"backend": "docker run --env-file ./.env -p 8000:8000 -t -i sebastienbarbier/seven23",
"prettier": "prettier --trailing-comma es5 --write '{src,__{tests,mocks}__}/**/*.js' --plugin=prettier-plugin-organize-imports",
"e2e": "npx cypress run",
"e2e:build": "npx cypress run --config-file ./cypress/config/cypress.production.config.js",
"e2e:cli": "start-server-and-test serve:build http://127.0.0.1:8080 e2e:build",
"heroku-postbuild": "npm run build",
"predeploy": "./scripts/predeploy.sh",
"deploy": "./scripts/deploy.sh",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"private": true,
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/runtime": "^7.24.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.10.0",
"cypress": "^13.6.6",
"dotenv": "^16.4.5",
"es6-promise": "4.2.8",
"eslint": "^8.57.0",
"eslint-cli": "1.1.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"node-sass": "^9.0.0",
"pkg-dir": "^8.0.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"pretty-quick": "^4.0.0",
"react-codemod": "^5.4.4",
"sass-loader": "^14.1.1",
"start-server-and-test": "^2.0.3",
"style-loader": "^3.3.4",
"stylelint": "^16.2.1",
"url-loader": "^4.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@date-io/moment": "^3.0.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.11",
"@mui/lab": "^5.0.0-alpha.166",
"@mui/material": "^5.15.11",
"@mui/x-date-pickers": "^6.19.6",
"@sentry/browser": "^7.105.0",
"@sentry/webpack-plugin": "^2.14.2",
"async": "^3.2.5",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.6.7",
"babel-jest": "^29.7.0",
"blueimp-md5": "^2.19.0",
"browserslist": "^4.23.0",
"caniuse-lite": "^1.0.30001593",
"copy-webpack-plugin": "^12.0.2",
"country-flag-emoji": "^1.0.3",
"d3": "^7.8.5",
"history": "^5.3.0",
"http-server": "^14.1.1",
"jose-jwe-jws": "0.1.6",
"moment": "^2.30.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-autosuggest": "^10.1.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.2",
"react-select": "^5.8.0",
"redux": "^5.0.1",
"redux-persist": "6.0.0",
"redux-thunk": "^3.1.0",
"swiper": "^11.0.7",
"uuid": "^9.0.1",
"workbox-webpack-plugin": "^7.0.0",
"workbox-window": "^7.0.0"
}
}