-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.49 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.49 KB
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
{
"name": "test-v2",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.3.1",
"@types/react-content-loader": "^4.0.0",
"antd": "^4.0.4",
"axios": "^0.19.2",
"lodash": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-query": "^1.1.7",
"react-redux": "^7.2.0",
"react-responsive": "^8.0.3",
"react-router-dom": "^5.1.2",
"react-scroll-up": "^1.3.3",
"react-slick": "^0.25.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"slick-carousel": "^1.8.1",
"styled-components": "^5.0.1",
"tailwindcss": "^1.2.0"
},
"scripts": {
"start": "react-app-rewired start",
"prestart": "npm run watch:css",
"build": "react-app-rewired build",
"prebuild": "npm run build:css",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"build:css": "postcss src/styles/styles.css -o src/styles/styles-generated.css",
"watch:css": "npm run build:css -w",
"code:format": "prettier --ignore-path .gitignore \"**/*.{json,md,scss,yaml,yml,ts,tsx,js}\""
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,html}": [
"prettier --write"
]
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.1.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/antd": "^1.0.0",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.31",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-responsive": "^8.0.2",
"@types/react-router-dom": "^5.1.3",
"@types/redux-persist": "^4.3.1",
"@types/styled-components": "^5.0.1",
"autoprefixer": "^9.7.5",
"babel-plugin-import": "^1.13.0",
"customize-cra": "^0.9.1",
"husky": "^4.2.3",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"lint-staged": "^10.0.9",
"postcss-cli": "^7.1.0",
"prettier": "^2.0.2",
"react-app-rewired": "^2.1.5",
"react-scripts": "3.4.1",
"typescript": "^3.7.5"
}
}