-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.67 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
{
"name": "yo-mess-application",
"version": "0.0.1",
"description": "YoMess (Your Messages) est une application permettant d'envoyer et recevoir des messages à tout moment et en toute sécurité",
"main": "index.js",
"sideEffect": [
"*.css",
"*.scss"
],
"scripts": {
"start:dev": "webpack serve -c webpack/webpack.dev.config.js --progress --color",
"start:server": "json-server --watch ./config/data/db.json",
"build:prod": "webpack -c webpack/webpack.prod.config.js --progress --color",
"build:analyze": "webpack -c webpack/webpack.prod.config.js --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"lint": "eslint --cache --cache-location ./.eslintcache --ext js,jsx ./src",
"lint:debug": "eslint --cache --cache-location ./.eslintcache --ext js,jsx ./src --debug",
"lint:fix": "eslint --cache --cache-location ./.eslintcache --ext js,jsx ./src --fix",
"test": "jest",
"test:update": "jest --updateSnapshot",
"test:coverage": "jest --coverage --colors"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/helabenkhalfallah/yo-mess-application.git"
},
"author": "Ben Khalfallah Héla",
"license": "MIT",
"bugs": {
"url": "https://github.com/helabenkhalfallah/yo-mess-application/issues"
},
"homepage": "https://github.com/helabenkhalfallah/yo-mess-application#readme",
"dependencies": {
"@ant-design/icons": "=4.2.2",
"@loadable/component": "=5.13.2",
"antd": "=4.7.0",
"axios": "=0.21.1",
"formik": "=2.2.0",
"node-sass": "=6.0.1",
"prop-types": "=15.7.2",
"react": "=17.0.0",
"react-cookies": "=0.1.1",
"react-dom": "=17.0.0",
"react-redux": "=7.2.1",
"react-router": "=5.2.0",
"react-router-dom": "=5.2.0",
"redux": "=4.0.5",
"redux-saga": "=1.1.3"
},
"devDependencies": {
"@babel/cli": "=7.14.5",
"@babel/core": "=7.11.6",
"@babel/eslint-parser": "=7.11.5",
"@babel/eslint-plugin": "=7.11.5",
"@babel/plugin-proposal-class-properties": "=7.10.4",
"@babel/plugin-proposal-decorators": "=7.10.5",
"@babel/plugin-proposal-optional-chaining": "=7.11.0",
"@babel/plugin-transform-modules-commonjs": "=7.10.4",
"@babel/plugin-transform-regenerator": "=7.10.4",
"@babel/plugin-transform-runtime": "=7.12.0",
"@babel/polyfill": "=7.11.5",
"@babel/preset-env": "=7.11.5",
"@babel/preset-react": "=7.10.4",
"@wojtekmaj/enzyme-adapter-react-17": "=0.6.2",
"babel-jest": "=27.0.2",
"babel-loader": "=8.1.0",
"babel-plugin-import": "=1.13.1",
"chai": "=4.2.0",
"css-loader": "=5.2.6",
"css-minimizer-webpack-plugin": "=3.0.1",
"debug": "=4.2.0",
"enzyme": "=3.11.0",
"enzyme-adapter-react-16": "=1.15.5",
"enzyme-to-json": "=3.6.1",
"eslint": "=7.11.0",
"eslint-config-airbnb": "=18.2.0",
"eslint-plugin-import": "=2.22.1",
"eslint-plugin-jsx-a11y": "=6.3.1",
"eslint-plugin-react": "=7.21.4",
"eslint-plugin-react-hooks": "=4.1.2",
"html-loader": "=2.1.2",
"html-webpack-plugin": "=5.3.1",
"husky": "=6.0.0",
"jest": "=27.0.4",
"json-server": "=0.16.2",
"less": "=4.1.1",
"less-loader": "=9.1.0",
"mini-css-extract-plugin": "=1.6.0",
"optimize-css-assets-webpack-plugin": "=6.0.0",
"redux-mock-store": "=1.5.4",
"redux-saga-test-plan": "=4.0.0-rc.3",
"sass": "=1.27.0",
"sass-loader": "=12.1.0",
"style-loader": "=2.0.0",
"terser-webpack-plugin": "=5.1.3",
"webpack": "=5.38.1",
"webpack-bundle-analyzer": "=4.4.2",
"webpack-cli": "=4.7.2",
"webpack-dev-server": "=3.11.0"
}
}