generated from little-buddy/craco-react-webapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.92 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
{
"name": "cra-t",
"version": "0.1.0",
"license": "ISC",
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"lint": "eslint --cache .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --write .",
"format": "prettier --check .",
"analyze": "cross-env ANALYZE=true yarn build"
},
"dependencies": {
"@react-spring/web": "^9.7.3",
"@reduxjs/toolkit": "^1.9.5",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@use-gesture/react": "^10.3.0",
"axios": "^1.4.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-pdf": "^7.3.3",
"react-redux": "^8.1.2",
"react-router-dom": "^6.14.2",
"react-scripts": "^5.0.1",
"react-use": "^17.4.0",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.2",
"sass": "^1.64.2",
"sass-loader": "^13.3.2",
"stylelint-webpack-plugin": "^4.1.1",
"tailwindcss": "^3.3.3",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^7.1.0",
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.197",
"@types/node": "^20.4.5",
"@types/react": "18.2.0",
"@types/react-dom": "^18.2.7",
"@types/react-redux": "^7.1.25",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vue/preload-webpack-plugin": "^2.0.0",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"hard-source-webpack-plugin": "^0.13.1",
"postcss-nesting": "^12.0.1",
"postcss-plugin-px2rem": "^0.8.1",
"preload-webpack-plugin": "^2.3.0",
"speed-measure-webpack-plugin": "^1.5.0",
"stylelint": "^15.10.2",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"typescript": "^5.1.6",
"webpack-manifest-plugin": "^5.0.0",
"webpackbar": "^5.0.2"
},
"homepage": ".",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}