-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.08 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
{
"name": "wordle-clone",
"version": "0.1.0",
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"lint": "eslint \"./**/*.{ts,tsx,js,jsx}\" --ignore-path .eslintignore || true",
"lint:fix": "eslint --fix \"./**/*.{ts,tsx,js,jsx}\" --ignore-path .eslintignore || true",
"lint:style": "stylelint ./**/*.{css,scss,pcss} --fix",
"lint:commit": "commitlint --edit",
"prettier": "prettier --write --config ./.prettierrc \"./src/**/*.{ts,tsx,js,jsx}\" || true",
"deploy:dev": "sls deploy",
"deploy:prod": "sls deploy --stage prod",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"lint-staged": {
"src/**": [
"yarn prettier"
],
"./**/*.{ts,tsx,js,jsx}": [
"yarn lint:fix"
],
"./**/*.{css,scss,pcss}": [
"yarn lint:style"
]
},
"dependencies": {
"axios": "^0.26.1",
"buffer": "^6.0.3",
"classnames": "^2.3.1",
"node-sass": "^7.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-query": "^3.34.16",
"react-scripts": "5.0.0",
"web-vitals": "^2.1.4",
"zustand": "^3.7.1"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@craco/craco": "^6.4.3",
"@swc/helpers": "^0.3.8",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"autoprefixer": "^10.4.4",
"craco-swc": "^0.2.0",
"cssnano": "^5.1.4",
"eslint": "^8.11.0",
"eslint-config-airbnb-typescript": "^16.1.3",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"msw": "^0.39.2",
"pinst": "^3.0.0",
"postcss": "^8.4.12",
"postcss-scss": "^4.0.3",
"prettier": "^2.6.0",
"regenerator-runtime": "^0.13.9",
"serverless": "^3.7.9",
"serverless-s3-sync": "^3.0.0",
"serverless-stack-termination-protection": "^1.0.4",
"stylelint": "^14.6.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"stylelint-prettier": "^2.0.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.2"
},
"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"
]
},
"packageManager": "yarn@3.2.0",
"msw": {
"workerDirectory": "public"
}
}