-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.75 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
{
"name": "vite-react-ts",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"watch:scss": "node-sass src/assets/styles/scss/main.scss src/assets/styles/css/style.css -w",
"compile:scss": "node-sass src/assets/styles/scss/main.scss src/assets/styles/css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' src/assets/styles/css/style.comp.css -o src/assets/styles/css/style.prefix.css",
"compress:css": "node-sass src/assets/styles/css/style.prefix.css src/assets/styles/css/style.css --output-style compressed",
"build:css": "npm-run-all compile:scss prefix:css compress:css",
"test": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@hookform/resolvers": "^3.0.1",
"@supabase/supabase-js": "^2.15.0",
"axios": "^1.3.5",
"pullstate": "^1.25.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-hot-toast": "^2.4.0",
"react-router-dom": "^6.10.0",
"sass": "^1.60.0",
"use-local-storage-state": "^18.3.0",
"zod": "^3.21.4",
"zustand": "^4.3.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.30.1",
"@vitest/ui": "^0.30.1",
"autoprefixer": "^10.4.14",
"jsdom": "^21.1.1",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vitest": "^0.30.1"
}
}