This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.06 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": "check-search",
"version": "1.0.0",
"description": "",
"main": ".index.js",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"scripts": {
"start": "webpack-dev-server --open",
"test": "NODE_ENV=test jest --coverage src",
"watch": "jest --watch --coverage src",
"test:lint": "eslint src",
"serve": "webpack",
"build": "webpack",
"transifex:extract": "formatjs extract src/*.js --format transifex --out-file localization/transifex/source.json",
"transifex:upload": "tx push -s",
"transifex:download": "tx pull -a -f"
},
"keywords": [],
"authors": [
"Meedan"
],
"license": "MIT",
"jest": {
"setupFiles": [
"<rootDir>/src/setupTests.js"
]
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "*",
"core-js": "^3.9.1",
"jsonapi-react": "^0.0.24",
"jss-rtl": "^0.3.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-intl": "^5.13.5",
"react-router-dom": "^5.2.0",
"rtl-detect": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@formatjs/cli": "^4.2.6",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"chokidar": "^3.5.1",
"copy-webpack-plugin": "^6.4.0",
"css-loader": "^4.3.0",
"enzyme": "^3.11.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-formatjs": "^2.14.6",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-require-path-exists": "^1.1.9",
"html-webpack-plugin": "^4.4.1",
"jest": "^26.6.3",
"react-test-renderer": "^17.0.1",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}