-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.14 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.14 KB
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
{
"name": "rs-clone",
"description": "rs-clone",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack serve --env develop",
"lint": "eslint . --ext .ts",
"test": "jest",
"prepare": "husky install",
"lintstaged": "lint-staged --relative"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.css": [
"prettier --write -config .prettierrc"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/elukashova/rs-clone.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/elukashova/rs-clone/issues"
},
"homepage": "https://github.com/elukashova/rs-clone#readme",
"devDependencies": {
"@googlemaps/polyline-codec": "^1.0.28",
"@types/gapi": "^0.0.44",
"@types/google-one-tap": "^1.2.2",
"@types/google.accounts": "^0.0.6",
"@types/google.maps": "^3.51.1",
"@types/jest": "^29.4.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.49.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"lint-staged": "^13.1.0",
"mini-css-extract-plugin": "^2.7.2",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@googlemaps/polyline-codec": "^1.0.28",
"@mapbox/mapbox-gl-geocoder": "^5.0.1",
"axios": "^1.3.3",
"i18next": "^22.4.9",
"i18next-browser-languagedetector": "^7.0.1",
"jwt-decode": "^3.1.2",
"uuid": "^9.0.0"
}
}