-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.23 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
{
"name": "refact.js",
"version": "0.0.1",
"description": "awesome react-framework with Custom Webpack.Config and internal tools and reduced bundle",
"main": "index.js",
"scripts": {
"dev": "webpack serve --mode development",
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"test": "jest --verbose --silent --forceExit",
"refact:cc": "node ./scripts --c"
},
"husky": {
"hooks": {
"pre-commit": "tsc && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": "eslint --fix",
"*.{css,scss}": "stylelint --fix"
},
"author": "Mahdi Pakravan ([email protected])",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.18.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@glen/jest-raw-loader": "^2.0.0",
"@playwright/test": "^1.28.1",
"@statoscope/cli": "^5.24.0",
"@statoscope/webpack-plugin": "^5.20.1",
"@testing-library/jest-dom": "^5.16.5",
"@types/croppie": "^2.6.1",
"@types/hast": "^2.3.4",
"@types/jest": "^29.2.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@webpack-cli/serve": "^2.0.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"browserlist": "^1.0.1",
"buffer": "^6.0.3",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-no-async-without-await": "^1.2.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"git-revision-webpack-plugin": "^5.0.0",
"gitlog": "^4.0.4",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.0.4",
"mini-css-extract-plugin": "^2.7.1",
"minimist": "^1.2.7",
"postcss-loader": "^7.0.1",
"postcss-modules": "^6.0.0",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"script-loader": "^0.7.2",
"serve": "^14.1.2",
"style-loader": "^3.3.1",
"stylelint": "^14.15.0",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.6.0",
"stylelint-group-selectors": "^1.0.9",
"stylelint-high-performance-animation": "^1.6.0",
"telegraph-node": "^1.0.4",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"refactjs-actionman": "^0.0.4"
},
"optionalDependencies": {
"fsevents": "2.3.2"
}
}