-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.17 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
{
"name": "know-your-neighborhood",
"description": "Frontend part of Know Your Neighborhood application",
"version": "0.0.1",
"private": true,
"author": {
"name": "Andrzej Wojtys",
"email": "[email protected]"
},
"main": "",
"scripts": {
"build": "npx webpack --config webpack.dev.js",
"start:dev": "webpack-dev-server --open -d --watch --config webpack.dev.js",
"lint": "./node_modules/.bin/eslint --ext .ts,.tsx ./src --fix"
},
"dependencies": {
"bootstrap": "4.3.1",
"leaflet": "1.5.1",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-router": "5.0.1",
"react-router-dom": "5.0.1",
"react-leaflet": "2.4.0",
"reactstrap": "8.0.1",
"css-loader": "3.2.0",
"style-loader": "1.0.0",
"sass-loader": "7.2.0",
"node-sass": "4.12.0",
"url-loader": "2.1.0",
"file-loader": "^4.2.0",
"webpack": "4.39.1",
"webpack-cli": "3.3.6",
"html-webpack-plugin": "3.2.0",
"html-webpack-root-plugin": "0.10.0",
"clean-webpack-plugin": "3.0.0",
"react-select": "3.0.4",
"leaflet.awesome-markers": "^2.0.5",
"font-awesome": "^4.7.0",
"font-awesome-icons": "^1.6.0"
},
"devDependencies": {
"typescript": "3.4.3",
"source-map-loader": "0.2.4",
"@types/node": "10.0.3",
"@types/reactstrap": "5.0.23",
"@types/react": "16.8.24",
"@types/react-dom": "16.0.5",
"@types/react-router": "4.0.24",
"@types/react-router-dom": "4.2.6",
"@types/react-leaflet": "1.1.5",
"@types/jest": "22.2.3",
"@types/react-select": "3.0.4",
"@types/leaflet.awesome-markers": "^2.0.24",
"eslint": "6.1.0",
"@typescript-eslint/eslint-plugin": "1.13.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-config-airbnb-typescript": "4.0.1",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "1.7.0",
"eslint-plugin-import": "2.18.2",
"ts-loader": "6.0.4",
"webpack-dev-server": "3.8.0",
"react-jest": "0.2.1"
}
}