-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
118 lines (118 loc) · 3.25 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
{
"private": true,
"engines": {
"node": ">=20"
},
"imports": {
"#app/actions": {
"storybook": "./app/actions.mock.ts",
"default": "./app/actions.ts"
},
"#lib/session": {
"storybook": "./lib/session.mock.ts",
"default": "./lib/session.ts"
},
"#lib/db": {
"storybook": "./lib/db.mock.ts",
"default": "./lib/db.ts"
},
"#lib/sanitize-html": {
"storybook": "./lib/sanitize-html.mock.ts",
"default": "./lib/sanitize-html.ts"
},
"#*": [
"./*",
"./*.ts",
"./*.tsx"
]
},
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev",
"test": "vitest",
"lint": "next lint",
"typecheck": "tsc",
"start": "next start",
"prisma:setup": "dotenv -e .env.local prisma migrate dev && pnpm run generate-dmmf",
"prisma:seed": "dotenv -e .env.local prisma db seed",
"prisma:studio": "dotenv -e .env.local prisma studio",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"generate-dmmf": "tsx prisma/generate-dmmf.ts"
},
"prisma": {
"seed": "tsx ./prisma/seed.ts && tsx ./prisma/generate-dmmf.ts"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"cookie-signature-edge": "^1.0.7",
"date-fns": "^3.6.0",
"marked": "^1.2.9",
"ms": "^2.1.3",
"next": "^14.2.5",
"oauth": "^0.10.0",
"react": "^18.3",
"react-dom": "^18.3",
"sanitize-html": "^2.13.0"
},
"devDependencies": {
"@chromatic-com/storybook": "3.0.0--canary.342.898d4c4.0",
"@prisma/client": "^5.11.0",
"@storybook/addon-a11y": "^8.4.6",
"@storybook/addon-essentials": "^8.4.6",
"@storybook/addon-viewport": "^8.4.6",
"@storybook/blocks": "^8.4.6",
"@storybook/csf": "^0.1.11",
"@storybook/experimental-addon-test": "^8.4.6",
"@storybook/experimental-nextjs-vite": "^8.4.6",
"@storybook/react": "^8.4.6",
"@storybook/test": "^8.4.6",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/sanitize-html": "^2.11.0",
"@ungap/with-resolvers": "^0.1.0",
"@vitest/browser": "^2.1.8",
"@vitest/coverage-istanbul": "^2.1.8",
"@vitest/ui": "^2.1.8",
"axe-core": "^4.10.0",
"chromatic": "^11.3.0",
"concurrently": "^8.2.2",
"dotenv-cli": "^7.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.0",
"eslint-plugin-storybook": "^0.8.0",
"http-server": "^14.1.1",
"mockdate": "^3.0.5",
"module-alias": "^2.2.3",
"msw": "^2.6.6",
"msw-storybook-addon": "^2.0.3",
"nyc": "^15.1.0",
"playwright": "^1.43.0",
"prettier": "^3.2.5",
"prisma": "^5.11.0",
"prisma-mock": "^0.10.2",
"storybook": "^8.4.6",
"tinyrainbow": "^1.2.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.4.5",
"vite": "^6.0.0",
"vitest": "^2.1.8",
"vitest-axe": "^0.1.0",
"wait-on": "^7.2.0"
},
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 100
},
"msw": {
"workerDirectory": [
"public"
]
},
"packageManager": "[email protected]+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0"
}