This repository was archived by the owner on Mar 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.16 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
{
"name": "jiyucho-app",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"tauri": "tauri",
"format": "prettier --write ./src/",
"format:ci": "prettier --check ./src/",
"typegen:scss": "typed-scss-modules src/styles/**/*.module.scss",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest run"
},
"dependencies": {
"@reacticons/ionicons": "^7.1.0",
"@tauri-apps/api": ">=2.0.0-rc.0",
"@tauri-apps/plugin-shell": ">=2.0.0-rc.0",
"jotai": "^2.9.3",
"next": "^14.2.10",
"paper": "^0.12.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-paper-bindings": "^3.0.0-beta.13",
"smplr": "^0.15.1",
"standardized-audio-context": "^25.3.77",
"webpack": "^5.94.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@eslint/compat": "^1.1.1",
"@next/eslint-plugin-next": "^14.2.11",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-interactions": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/addon-onboarding": "^8.3.0",
"@storybook/blocks": "^8.3.0",
"@storybook/nextjs": "^8.3.0",
"@storybook/react": "^8.3.0",
"@storybook/test": "^8.3.0",
"@tauri-apps/cli": ">=2.0.0-rc.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/parser": "^8.5.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.10.0",
"eslint-config-next": "14.2.11",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"jsdom": "^25.0.0",
"prettier": "^3.3.3",
"sass": "^1.78.0",
"scss-reset": "^1.4.2",
"storybook": "^8.2.9",
"typed-scss-modules": "^8.0.1",
"typescript": "^5.2.2",
"typescript-eslint": "^8.5.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}