-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
76 lines (76 loc) · 2.12 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
{
"name": "prayer-times-extension",
"version": "4.0.0",
"description": "Muslim Prayer Timetable Extension",
"private": true,
"scripts": {
"start": "webpack --config ./configs/webpack.dev.js --watch",
"build": "webpack --config ./configs/webpack.prod.js",
"lint": "eslint src --config ./configs/.eslintrc.js --ext .tsx,.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohamedmansour/prayer-times-extension.git"
},
"author": "Mohamed Mansour",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohamedmansour/prayer-times-extension/issues"
},
"homepage": "https://github.com/mohamedmansour/prayer-times-extension#readme",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"@types/leaflet": "^1.7.0",
"@types/sinon": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.1.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"sinon": "^10.0.0",
"typescript": "^4.2.4",
"webextension-polyfill-ts": "^0.25.0",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@types/chrome": "0.0.137",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"leaflet": "^1.7.1",
"mobx": "^6.3.0",
"mobx-react-lite": "^3.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^10.6.0",
"react-leaflet": "^3.1.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-react",
"@babel/preset-typescript"
]
}
}