-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
122 lines (122 loc) · 3.68 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "local-microblogging-client",
"version": "2.12.1",
"description": "Local Microblogging Frontend Client",
"main": "src/index.tsx",
"homepage": "https://pure-js.github.io/local-microblogging-client/",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite serve",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc -b",
"test": "vitest",
"coverage": "vitest run --coverage",
"e2e": "playwright test",
"deploy": "act -j publish",
"release": "standard-version",
"lint": "eslint src/ --ext .tsx,.jsx,.js,.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format:check": "prettier --check .",
"format:write": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/pure-js/local-microblogging-client.git"
},
"author": "pure-js",
"license": "MIT",
"bugs": {
"url": "https://github.com/pure-js/local-microblogging-client/issues"
},
"devDependencies": {
"@nx/eslint": "20.1.4",
"@nx/playwright": "20.1.4",
"@nx/storybook": "20.1.4",
"@nx/vite": "20.1.4",
"@nx/web": "20.1.4",
"@playwright/test": "^1.49.1",
"@storybook/addon-essentials": "^8.0.10",
"@storybook/addon-interactions": "^8.0.10",
"@storybook/addon-links": "^8.0.10",
"@storybook/addon-mdx-gfm": "^8.0.10",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^8.0.10",
"@storybook/react": "^8.0.10",
"@storybook/react-vite": "^8.0.10",
"@storybook/testing-library": "^0.2.2",
"@tailwindcss/typography": "^0.5.7",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vanilla-extract/vite-plugin": "^4.0.18",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react-swc": "~3.7.2",
"@vitest/ui": "^1.6.0",
"autoprefixer": "^10.4.13",
"babel-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
"browserslist": "~4.22.1",
"chromatic": "~9.0.0",
"cssnano": "^6.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-love": "~43.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-unicorn": "^55.0.0",
"msw": "^1.3.3",
"nx": "20.1.4",
"postcss": "^8.4.41",
"postcss-nesting": "13.0.0",
"prettier": "3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"standard-version": "^9.5.0",
"storybook": "^8.0.10",
"storybook-addon-react-router-v6": "~2.0.15",
"tailwindcss": "^3.4.10",
"typescript": "^5.7.2",
"vite": "^6.0.1",
"vite-plugin-pwa": "^0.21.1",
"vitest": "^2.0.5"
},
"dependencies": {
"@growthbook/growthbook-react": "^0.20.0",
"@vanilla-extract/css": "^1.15.5",
"daisyui": "^4.12.14",
"dexie": "^4.0.8",
"dexie-react-hooks": "^1.1.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.0.2",
"theme-change": "^2.5.0",
"uuid": "^9.0.0"
},
"keywords": [
"microblogging"
],
"engines": {
"node": ">=20.9",
"pnpm": ">=9.8"
},
"msw": {
"workerDirectory": "public"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"packageManager": "[email protected]",
"nx": {}
}