-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.22 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.22 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "cross-env NEXT_PUBLIC_BUILD_MODE=EXPORT DISBALE_I18=true next build ",
"start": "next start",
"start:test": "next start -p 3001",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"extract-antd-styles": "yarn tsx scripts/extract-antd-styles.js",
"analyze": "cross-env ANALYZE=true yarn build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@ant-design/icons": "^5.3.0",
"@capacitor/app": "^7.1.0",
"@capacitor/filesystem": "^7.1.5",
"@capacitor/local-notifications": "^7.0.3",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@microsoft/fetch-event-source": "^2.0.1",
"@next/bundle-analyzer": "^15.3.5",
"@react-spring/web": "^9.7.5",
"@spotify/basic-pitch": "^1.0.1",
"@supabase/supabase-js": "^2.50.0",
"@tonejs/midi": "^2.0.28",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.5.1",
"@vercel/analytics": "^1.5.0",
"abcjs": "^6.5.1",
"ali-oss": "^6.19.0",
"antd": "5.24.3",
"autoprefixer": "^10.4.15",
"axios": "^1.6.7",
"capacitor-plugin-safe-area": "^4.0.3",
"classnames": "^2.5.1",
"cross-env": "^7.0.3",
"eslint": "^8.47.0",
"eslint-config-next": "^15.3.5",
"formidable": "^3.5.1",
"i18next": "^25.3.2",
"jsonwebtoken": "^9.0.2",
"mobx": "^6.6.2",
"mobx-react": "^7.5.3",
"modern-screenshot": "^4.6.0",
"mysql2": "^3.9.2",
"next": "14.2.35",
"next-i18next": "^15.4.2",
"next-pwa": "^5.6.0",
"pg": "^8.13.0",
"postcss": "^8.4.28",
"rad.js": "^1.0.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.6.1",
"react-markdown": "^9.0.1",
"sass": "^1.69.7",
"slate": "^0.94.1",
"slate-history": "^0.93.0",
"slate-react": "^0.97.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.5.3",
"uuid": "^11.1.0",
"valtio": "^1.13.1",
"vconsole": "^3.15.1"
},
"devDependencies": {
"@ant-design/static-style-extract": "^1.0.3",
"@capacitor/android": "^7.4.4",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^7.4.4",
"@capacitor/core": "^7.4.4",
"@svgr/webpack": "^8.1.0",
"@types/ali-oss": "^6.16.11",
"@types/formidable": "^3.4.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^9.0.8",
"@vitest/ui": "^3.2.4",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.5",
"next-transpile-modules": "^10.0.1",
"prettier": "^3.6.2",
"tsx": "^4.7.1",
"vitest": "^3.2.4"
},
"resolutions": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,scss,md}": [
"prettier --write"
]
}
}