-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
{
"name": "build-sandbox",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --env.mode=development",
"test": "jest",
"build:prod": "webpack --env.mode=production",
"dev": "webpack --env.mode=development",
"lint": "eslint --ignore-path ./.gitignore ."
},
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"author": "Karpuk Vitali",
"license": "ISC",
"browserslist": [
"last 2 Chrome versions"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-block-scoping": "^7.8.3",
"@babel/plugin-transform-classes": "^7.9.2",
"@babel/plugin-transform-template-literals": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.4",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"redux": "^4.0.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"core-js": "^3.6.4",
"image-webpack-loader": "^6.0.0",
"mapbox-gl": "^1.10.1",
"moment": "^2.26.0",
"moment-timezone": "^0.5.31",
"react": "^16.13.1",
"react-animations": "^1.0.0",
"react-dom": "^16.13.1",
"react-mapbox-gl": "^4.8.3",
"react-redux": "^7.2.0",
"svg-sprite-loader": "^5.0.0"
}
}