-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.63 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "aspian-admin-frontend",
"version": "1.0.0",
"description": "Admin dashboard (front-end) of ASPIAN CMS (aspian repo) created with React/MobX/TypeScript/Ant Design.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --config=config/webpack.dev.js",
"build": "webpack --config=config/webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aspian-io/aspian-admin-frontend-react.git"
},
"keywords": [
"ASPIAN_CMS",
"ASPIAN_ADMIN",
"React",
"MobX",
"TypeScript",
"Ant",
"Design"
],
"author": "Omid Rouhani",
"license": "MIT",
"bugs": {
"url": "https://github.com/aspian-io/aspian-admin-frontend-react/issues"
},
"homepage": "https://github.com/aspian-io/aspian-admin-frontend-react#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@types/dompurify": "^2.2.0",
"@types/webpack-env": "^1.15.2",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"core-js": "^3.6.5",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"file-loader": "^6.1.0",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"image-webpack-loader": "^7.0.0",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"mini-css-extract-plugin": "^0.11.2",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^4.0.1",
"postcss-preset-env": "^6.7.0",
"raw-loader": "^4.0.1",
"sass-loader": "^10.0.2",
"source-map-loader": "^1.1.0",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.0",
"ts-loader": "^8.0.3",
"typescript": "^4.1.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-highlight-words": "^0.16.1",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.6",
"@types/tinymce": "^4.5.24",
"@types/ua-parser-js": "^0.7.33",
"@types/uuid": "^8.3.0",
"@uppy/core": "^1.14.1",
"@uppy/dashboard": "^1.13.0",
"@uppy/locales": "^1.16.10",
"@uppy/react": "^1.10.11",
"@uppy/status-bar": "^1.7.7",
"@uppy/tus": "^1.8.0",
"@uppy/url": "^1.5.13",
"antd": "^4.10.0",
"antd-jalali": "^0.9.4",
"axios": "^0.19.2",
"dompurify": "^2.2.6",
"i18next": "^19.8.4",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-xhr-backend": "^3.2.2",
"jalali-moment": "^3.3.8",
"jalaliday": "^2.3.0",
"moment": "^2.29.1",
"rc-tween-one": "^2.7.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-highlight-words": "^0.16.0",
"react-i18next": "^11.7.3",
"react-modern-calendar-datepicker": "^3.1.6",
"react-moment": "^1.0.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"slugify": "^1.4.5",
"tinymce": "^5.4.2",
"ua-parser-js": "^0.7.22",
"uuid": "^8.3.0",
"vazir-font": "^26.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}