-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.54 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.54 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
75
76
77
78
79
80
81
{
"name": "react-ts-boilerplate",
"version": "1.0.0",
"engines": {
"node": "14.x"
},
"main": "./src/server.ts",
"scripts": {
"dev": "cross-env TS_NODE_PROJECT=\"tsconfig-webpack-config.json\" webpack serve",
"build": "cross-env TS_NODE_PROJECT=\"tsconfig-webpack-config.json\" NODE_ENV=\"production\" webpack"
},
"license": "ISC",
"dependencies": {
"@devexpress/dx-react-core": "^2.7.5",
"@devexpress/dx-react-scheduler": "^2.7.5",
"@devexpress/dx-react-scheduler-material-ui": "^2.7.5",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"formik": "^2.2.6",
"i18next": "^20.2.4",
"jss": "^10.6.0",
"jss-rtl": "^0.3.0",
"lodash": "^4.17.21",
"mobx": "^6.2.0",
"mobx-react": "^7.1.0",
"notistack": "^1.0.7",
"query-string": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-recaptcha": "^2.1.0",
"react-i18next": "^11.8.15",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"recharts": "^2.0.9",
"use-react-router-breadcrumbs": "^2.0.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.10",
"@types/html-webpack-plugin": "^3.2.5",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.39",
"@types/react-router-dom": "^5.1.7",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.11.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.1",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.24.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"node-polyfill-webpack-plugin": "^1.1.0",
"style-loader": "^2.0.0",
"ts-loader": "^9.1.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.3.2",
"url-loader": "^4.1.1",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^3.0.0"
}
}