-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
{
"name": "otrium-challenge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open --hot --port 3000",
"build": "webpack --mode production",
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint-fix": "eslint 'src/**/*.{ts,tsx}' --fix"
},
"keywords": [],
"author": "IamThilina",
"license": "ISC",
"dependencies": {
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@types/react": "16.9.51",
"@types/react-dom": "16.9.8",
"@types/react-redux": "7.1.9",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-prettier": "3.1.4",
"prettier": "2.1.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.1",
"redux": "4.0.5",
"typescript": "4.0.3"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.10.4",
"@testing-library/jest-dom": "5.11.4",
"@testing-library/react": "11.0.4",
"@testing-library/react-hooks": "^3.4.2",
"@types/deep-freeze": "0.1.2",
"@types/jest": "26.0.14",
"@typescript-eslint/eslint-plugin": "4.4.0",
"@typescript-eslint/parser": "4.4.0",
"babel-loader": "8.1.0",
"css-loader": "3.5.3",
"deep-freeze": "0.0.1",
"eslint": "7.11.0",
"eslint-config-airbnb": "18.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.21.4",
"eslint-plugin-react-hooks": "4.1.2",
"html-webpack-plugin": "4.2.0",
"jest": "26.5.2",
"node-sass": "4.14.1",
"react-test-renderer": "^16.13.1",
"sass-loader": "10.0.3",
"style-loader": "1.1.4",
"ts-jest": "26.4.1",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
}
}