-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.21 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.21 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
{
"name": "ui-admin-panel",
"version": "1.0.0",
"description": "UI admin panel",
"type": "module",
"main": "",
"scripts": {
"build:dev": "webpack --config webpack-config/dev.webpack.config.ts",
"build:prod": "webpack --config webpack-config/prod.webpack.config.ts",
"start": "npm run build:dev && webpack-dev-server --watch --color --config webpack-config/dev.webpack.config.ts",
"lint": "eslint --ext ts,tsx src",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@teamsupercell/typings-for-css-modules-loader": "^2.1.0",
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/html-webpack-plugin": "^3.2.1",
"@types/jest": "^24.0.25",
"@types/material-ui": "^0.21.7",
"@types/mini-css-extract-plugin": "^0.9.0",
"@types/node": "^13.1.2",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/webpack": "^4.41.1",
"@types/webpack-dev-server": "^3.9.0",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.15.0",
"@typescript-eslint/parser": "^2.14.0",
"cache-loader": "^4.1.0",
"css-loader": "^3.4.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-react": "^7.17.0",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.1.2",
"thread-loader": "^2.1.3",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-loader": "^3.5.4",
"typescript": "^3.7.4",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"dependencies": {
"@material-ui/core": "^4.8.2",
"@material-ui/icons": "^4.5.1",
"@reduxjs/toolkit": "^1.2.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3"
}
}