forked from ether/etherpad-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.38 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
{
"name": "etherpad-next",
"description": "Rewrite of Etherpad using NextJS",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint:js": "next lint --cache-strategy=content --cache-location=.eslintjscache",
"lint:css": "stylelint \"**/*.css\" --cache --cache-strategy=content --cache-location=.stylelintcache",
"prettier": "prettier --write . --cache --cache-strategy=content --cache-location=.prettiercache",
"prettier:check": "prettier --check . --cache --cache-strategy=content --cache-location=.prettiercache",
"type-check": "tsc --noEmit",
"format": "npm run lint:js -- --fix && npm run lint:css -- --fix && npm run prettier",
"storybook": "cross-env BUILD_ENV=storybook storybook dev -p 6006 --quiet --no-open",
"storybook:build": "cross-env BUILD_ENV=storybook storybook build",
"test": "vitest",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"postinstall": "npx next-ws-cli patch"
},
"dependencies": {
"@prisma/client": "~5.11.0",
"@radix-ui/react-avatar": "~1.0.4",
"@radix-ui/react-select": "~2.0.0",
"@radix-ui/react-toast": "~1.1.5",
"classnames": "~2.5.1",
"lucide-react": "~0.358.0",
"next": "~14.1.3",
"next-ws": "~1.0.1",
"prisma": "~5.11.0",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"ws": "~8.16.0"
},
"devDependencies": {
"@storybook/addon-essentials": "~7.6.17",
"@storybook/addon-interactions": "~7.6.17",
"@storybook/addon-links": "~7.6.17",
"@storybook/addon-themes": "~7.6.17",
"@storybook/nextjs": "~7.6.17",
"@storybook/react": "~7.6.10",
"@types/node": "~20.11.28",
"@types/react": "~18.2.66",
"@types/react-dom": "~18.2.22",
"@types/ws": "^8.5.10",
"autoprefixer": "~10.4.18",
"eslint": "~8.57.0",
"eslint-config-next": "~14.1.3",
"eslint-plugin-storybook": "^0.8.0",
"next-ws-cli": "^1.0.0",
"postcss": "~8.4.35",
"prettier": "~3.2.5",
"prettier-plugin-tailwindcss": "~0.5.12",
"storybook": "~7.6.17",
"stylelint-config-standard": "~36.0.0",
"stylelint-order": "~6.0.4",
"stylelint-selector-bem-pattern": "~4.0.0",
"tailwindcss": "~3.4.1",
"typescript": "~5.4.2",
"vite-tsconfig-paths": "~4.3.1",
"vitest": "~1.3.1"
}
}