-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
138 lines (138 loc) · 3.89 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
129
130
131
132
133
134
135
136
137
138
{
"name": "react-materialui-tailwindcss",
"author": {
"email": "laducphuc@gmail.com",
"name": "Phuc La",
"url": "https://github.com/phucla/react-materialui-talwindcss"
},
"version": "0.1.0",
"private": true,
"keywords": [
"react",
"react skeleton",
"react structure",
"material ui",
"tailwind css",
"jest",
"typescript",
"structure"
],
"dependencies": {
"@date-io/date-fns": "1.3.13",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/pickers": "^3.3.10",
"@reduxjs/toolkit": "^1.6.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.24",
"@types/lodash.pick": "^4.4.6",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"autoprefixer": "^9",
"axios": "^0.21.1",
"clsx": "1.1.0",
"connected-react-router": "^6.9.1",
"date-fns": "^2.22.1",
"formsy-react": "^2.2.5",
"history": "^5.0.0",
"json-server": "^0.16.3",
"lodash.pick": "^4.4.0",
"mobile-detect": "^1.4.5",
"perfect-scrollbar": "^1.5.1",
"postcss": "^7",
"prop-types": "^15.7.2",
"purgecss": "^4.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-perfect-scrollbar": "^1.5.8",
"react-redux": "^7.2.4",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0",
"react-scripts": "4.0.3",
"redux": "^4.1.0",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"tailwindcss-dir": "^4.0.0",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "yarn run tailwind && react-scripts start",
"server": "json-server --watch db.json -p 3001",
"build": "yarn run tailwind && react-scripts build",
"tailwind": "tailwind build ./src/styles/tailwind-config.css -c ./tailwind.config.js -o ./src/styles/tailwind.css",
"purge-tailwind": "node ./purge-css.js",
"test": "jest --config=jest.config.js",
"test:coverage": "yarn test --coverage",
"prettier": "prettier --write {src}/**/*.{ts,sx}",
"eslint": "eslint {src,__tests__,.stories}/**/*.{ts,tsx}",
"lint-staged": "lint-staged",
"eject": "react-scripts eject",
"jest—clear": "jest —clearCache",
"postbuild": "node ./purge-css.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.14.5",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/redux-logger": "^3.0.8",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-react": "^6.24.1",
"dotenv": "^10.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"imagemin-lint-staged": "^0.4.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"react-testing-library": "^8.0.1",
"redux-logger": "^3.0.6",
"ts-jest": "^27.0.4"
},
"lint-staged": {
"{src/**/*.js": [
"prettier --write",
"git add"
],
"{src,__tests__,stories}/**/*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{png,jpeg,jpg,gif,svg}": [
"imagemin-lint-staged",
"git add"
]
}
}