-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"lint": "prettier --write resources/js",
"test": "jest"
},
"devDependencies": {
"@babel/preset-react": "^7.17.12",
"@faker-js/faker": "^7.1.0",
"@swc/core": "^1.2.186",
"@swc/jest": "^0.2.21",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"autoprefixer": "^10.4.7",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"laravel-mix": "^6.0.43",
"msw": "^0.40.0",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.11",
"tailwindcss": "^3.0.24",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"clsx": "^1.1.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.31.3"
}
}