-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·88 lines (88 loc) · 3.04 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
{
"name": "react-modele",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src/**/*.js",
"clean": "rm -rf dist",
"clean:all": "rm -rf dist node_modules yarn.lock package-lock.json",
"test": "cross-env NODE_PATH=./ mocha --require tests/.setup.js tests/**/*.test.js",
"test:watch": "cross-env NODE_PATH=./ mocha --watch --require tests/.setup.js tests/**/*.test.js"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"bundle-stats-webpack-plugin": "^2.2.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^7.0.2",
"css-loader": "^4.2.1",
"cssnano": "^4.1.10",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"ignore-styles": "^5.0.1",
"mini-css-extract-plugin": "^0.10.0",
"mocha": "^8.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"resolve-url-loader": "^3.1.1",
"sass": "^1.26.10",
"sass-loader": "^9.0.3",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.2"
},
"dependencies": {
"@emotion/core": "^10.0.35",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material/floating-label": "^7.0.0",
"axios": "^0.20.0",
"base64-img": "^1.0.4",
"bcryptjs": "^2.4.3",
"clipboard": "^2.0.6",
"http-proxy-middleware": "^1.0.5",
"js-cookie": "^2.2.1",
"leaflet": "^1.7.1",
"leaflet-geosearch": "^3.0.6",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-burger-menu": "^2.7.1",
"react-cookie": "^4.0.3",
"react-dom": "^16.13.1",
"react-icons": "^3.11.0",
"react-images-upload": "1.2.8",
"react-modal": "^3.11.2",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-spinners": "^0.9.0",
"react-toast-notifications": "^2.4.0",
"react-toggle": "^4.1.1",
"redux": "^4.0.5",
"regenerator-runtime": "^0.13.7",
"styled-components": "^5.1.1"
},
"homepage": "http://34.202.233.128/carnetdevoyage.com"
}