-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
95 lines (95 loc) · 2.88 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
{
"name": "react_sample",
"version": "0.1.0",
"private": true,
"license": "UNLICENSED",
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^13.5.0",
"@types/qs": "^6.9.7",
"animate.css": "^4.1.1",
"axios": "^0.26.1",
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.0.0",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-toastify": "^8.2.0",
"sass": "^1.50.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"test": "react-scripts test",
"eject": "react-scripts eject",
"start": "react-scripts start",
"dev": "yarn run styles && yarn start",
"dev:windows": "start yarn run styles && yarn start",
"lint:fix": "eslint --fix src/**/*.{js,jsx}",
"build": "yarn build:styles & react-scripts build",
"pretty": "prettier --write \"src/**/*.{js,jsx,css,scss}\"",
"lint:style": "npx stylelint \"src/**/*.{css,scss}\" --allow-empty-input",
"build:styles": "npx tailwindcss -i ./src/styles/index.scss -o ./src/styles/index.min.css --minify",
"styles": "npx tailwindcss -i ./src/styles/index.scss -o ./src/styles/index.min.css --watch --minify"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"prettier --write",
"eslint --fix"
],
"src/**/*.{json,css,scss}": "prettier --write"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/jest": "^29.2.1",
"@types/lodash": "^4.14.188",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^44.0.2",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2",
"stylelint": "^14.7.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^25.0.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.8.4",
"typescript-plugin-css-modules": "^3.4.0"
}
}