-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.72 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier -w ."
},
"dependencies": {
"@next/bundle-analyzer": "^13.3.0",
"@plastic-editor/protocol": "^0.0.6",
"@react-hookz/web": "^23.0.0",
"@supabase/supabase-js": "^1.35.7",
"@tauri-apps/api": "^1.2.0",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"fast-deep-equal": "^3.1.3",
"file-saver": "^2.0.5",
"immer": "^10.0.1",
"jotai": "^2.0.4",
"lodash.debounce": "^4.0.8",
"nanoid": "^4.0.2",
"next": "^13.3.0",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"text-spinners": "^1.0.5",
"tinykeys": "^1.4.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.2.3",
"@types/file-saver": "^2.0.5",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "18.15.11",
"@types/react": "^18.0.37",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"install": "^0.13.0",
"nano-staged": "^0.8.0",
"postcss": "^8.4.22",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"simple-git-hooks": "^2.8.1",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.4"
},
"nano-staged": {
"**/*.{js,jsx,json,ts,tsx,md,html,yaml,yml}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npm run lint && npx nano-staged && tsc --noEmit"
},
"browserslist": [
"chrome >= 70",
"firefox >= 74",
"not ie <= 11"
]
}