-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.15 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": "sedrah-tree",
"version": "0.0.1",
"description": "",
"private": true,
"main": "index.ts",
"scripts": {
"dev": "webpack serve --mode development --open --hot",
"lint": "tsc && eslint src/**/*.{ts,tsx} --fix",
"build": "webpack --mode production",
"postinstall": "patch-package"
},
"keywords": [],
"author": "Mostafa Sameto",
"license": "Apache-2.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run lint",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@types/moment-jalaali": "^0.7.4",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-sortable-tree": "^0.3.12",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.0",
"dotenv": "^8.2.0",
"error-overlay-webpack-plugin": "^0.4.2",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"patch-package": "^6.4.7",
"prettier": "^2.2.1",
"react-refresh": "^0.9.0",
"style-loader": "^2.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@date-io/jalaali": "^1.3.13",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/pickers": "^3.3.10",
"jss-rtl": "^0.3.0",
"moment-jalaali": "^0.9.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-sortable-tree": "^2.8.0"
}
}