-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.9 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
{
"name": "uni-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"studio": "npx prisma studio",
"lint": "eslint src --fix && prettier src --write",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"prepare": "husky install"
},
"prisma": {
"schema": "prisma/schema.prisma"
},
"prettier": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxSingleQuote": true,
"bracketSameLine": false
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@heroicons/react": "^2.0.18",
"@material-tailwind/react": "^2.1.4",
"@prisma/client": "^5.2.0",
"@react-three/drei": "^9.83.8",
"@react-three/fiber": "^8.15.12",
"@react-three/postprocessing": "^2.15.1",
"@uidotdev/usehooks": "^2.4.1",
"formik": "^2.4.4",
"gl-mat3": "^2.0.0",
"gl-mat4": "^1.2.0",
"gl-matrix": "^3.4.3",
"next": "^13.5.3",
"prisma": "^5.2.0",
"react": "^0.0.0-experimental-5bcade5fc-20231208",
"react-dom": "^0.0.0-experimental-5bcade5fc-20231208",
"react-dropzone": "^14.2.3",
"react-markdown": "^9.0.0",
"recharts": "^2.9.0",
"remark-gfm": "^4.0.0",
"resize-observer": "^1.0.4",
"three": "^0.159.0",
"zod": "^3.22.2",
"zustand": "^4.4.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.19",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/eslint": "^8.44.2",
"@types/node": "^20.6.0",
"@types/preview-email": "^3.0.1",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/three": "^0.159.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.16",
"eslint": "^8.49.0",
"eslint-config-next": "^13.5.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-prisma": "^5.0.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.4",
"yarn-upgrade-all": "^0.7.2"
}
}