-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.48 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
{
"name": "reactshop",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"scripts": {
"dev": "vite",
"build": "tailwindcss -i ./src/styles/input.css -o ./src/styles/output.css --minify && vite build",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"build-css": "tailwindcss -i ./src/styles/input.css -o ./src/styles/output.css --watch",
"test": "vitest",
"coverage": "vitest run --coverage",
"build:server": "cd server/ && npm i",
"start:server": "cd server/ && node server.js"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@stripe/react-stripe-js": "^2.2.0",
"@stripe/stripe-js": "^2.1.2",
"axios": "^1.5.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.1",
"react-loading": "^2.0.3",
"react-router-dom": "^6.14.1",
"tailwindcss": "^3.3.2",
"use-detect-keyboard-open": "^0.4.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"jsdom": "^22.1.0",
"vite": "^4.4.0",
"vitest": "^0.33.0"
}
}