-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 5.7 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (144 loc) · 5.7 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "template",
"version": "0.0.1",
"private": true,
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "./scripts/stack/local/infra/stack-only/infra-app.js",
"dev:only": "vite dev",
"build": "vite build",
"preview": "vite preview",
"db:migrate": "prisma migrate deploy",
"db:migrate:dev": "prisma migrate dev",
"db:seed:development": "node ./scripts/app/seeds/groups/development.js",
"db:seed:playwright": "node ./scripts/app/seeds/groups/playwright.js",
"test:unit:node": "vitest run --config vitest.node.config.ts",
"test:unit:node:auto": "vitest --config vitest.node.config.ts",
"test:unit:node:watch": "vitest watch --config vitest.node.config.ts",
"test:unit:node:coverage": "npm run test:unit:node -- --coverage",
"test:unit:node:debug": "npm run test:unit:node -- --single-thread",
"test:unit:dom": "vitest run --config vitest.dom.config.ts",
"test:unit:dom:auto": "vitest --config vitest.dom.config.ts",
"test:unit:dom:watch": "vitest watch --config vitest.dom.config.ts",
"test:unit:dom:coverage": "npm run test:unit:dom -- --coverage",
"test:unit:dom:debug": "npm run test:unit:dom -- --single-thread",
"test:unit:browser": "vitest run --config vitest.browser.config.ts",
"test:api:only": "playwright test --config playwright.api.config.ts",
"test:api:ui:only": "npm run test:api:only -- --ui",
"test:e2e:only": "playwright test --config playwright.e2e.config.ts",
"test:e2e:ui:only": "npm run test:e2e:only -- --ui",
"test:e2e:headed:only": "npm run test:e2e:only -- --headed --workers 1",
"test:e2e:codegen:only": "playwright codegen",
"test:playwright:report:show": "playwright show-report",
"test:playwright:trace:show": "playwright show-trace",
"lint": "npm run lint:base && npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
"lint:fix": "npm run lint:base && npm run lint:eslint:fix && npm run lint:prettier:fix && npm run lint:stylelint:fix",
"lint:base": "npm run lint:types && npm run lint:svelte",
"lint:types": "tsc --project ./tsconfig.json",
"lint:svelte": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"lint:svelte:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint:prettier": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:prettier:single": "prettier --list-different",
"lint:eslint": "eslint --format visualstudio --ext .js,.cjs,.ts,.svelte .",
"lint:eslint:fix": "eslint --format visualstudio --ext .js,.cjs,.ts,.svelte --fix .",
"lint:eslint:single": "eslint",
"lint:stylelint": "stylelint 'src/**/*.{postcss,svelte}'",
"lint:stylelint:fix": "stylelint 'src/**/*.{postcss,svelte}' --fix",
"lint:stylelint:single": "stylelint",
"playwright:install:browsers": "playwright install",
"playwright:install:dependencies": "playwright install-deps",
"packages:update:dry": "ncu",
"packages:audit": "npm audit"
},
"dependencies": {
"@floating-ui/dom": "1.5.3",
"@lucia-auth/adapter-prisma": "3.0.2",
"@lucia-auth/oauth": "3.4.0",
"@prisma/client": "5.5.2",
"@sentry/sveltekit": "7.99.0",
"callsites": "4.1.0",
"dayjs": "1.11.10",
"lodash": "4.17.21",
"lucia": "2.7.3",
"posthog-js": "1.102.0",
"posthog-node": "3.6.1",
"roarr": "7.21.0",
"serialize-error": "11.0.3",
"sveltekit-flash-message": "2.3.0",
"sveltekit-superforms": "1.12.0",
"zod": "3.22.4"
},
"devDependencies": {
"@faker-js/faker": "8.2.0",
"@iconify/json": "2.2.137",
"@northflank/cli": "0.9.12",
"@playwright/test": "1.39.0",
"@roarr/cli": "5.12.4",
"@skeletonlabs/skeleton": "2.4.0",
"@skeletonlabs/tw-plugin": "0.2.3",
"@sveltejs/adapter-auto": "2.1.1",
"@sveltejs/adapter-node": "1.3.1",
"@sveltejs/kit": "1.27.3",
"@tailwindcss/forms": "0.5.6",
"@tailwindcss/typography": "0.5.10",
"@testing-library/dom": "9.3.3",
"@testing-library/jest-dom": "6.1.5",
"@testing-library/svelte": "4.0.5",
"@testing-library/user-event": "14.5.1",
"@types/estree": "1.0.4",
"@types/jsdom": "21.1.6",
"@types/lodash": "4.14.200",
"@types/node": "20.8.10",
"@types/shelljs": "0.8.14",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"@vitest/browser": "1.0.4",
"@vitest/coverage-v8": "1.0.4",
"@vitest/ui": "1.0.4",
"autoprefixer": "10.4.16",
"commander": "11.1.0",
"dotenv": "16.3.1",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jest-dom": "5.1.0",
"eslint-plugin-playwright": "1.5.4",
"eslint-plugin-simple-import-sort": "12.0.0",
"eslint-plugin-svelte": "2.34.1",
"eslint-plugin-testing-library": "6.1.0",
"ignore": "5.3.0",
"jsdom": "23.0.1",
"npm-check-updates": "16.14.6",
"playwright": "1.39.0",
"postcss": "8.4.31",
"postcss-html": "1.5.0",
"postcss-import": "15.1.0",
"postcss-load-config": "4.0.1",
"postcss-nesting": "12.0.1",
"postcss-preset-env": "9.3.0",
"prettier": "3.0.3",
"prettier-plugin-svelte": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.6",
"pretty-format": "29.7.0",
"prisma": "5.5.2",
"rollup-plugin-visualizer": "5.9.2",
"shelljs": "0.8.5",
"stylelint": "15.11.0",
"stylelint-config-recommended": "13.0.0",
"stylelint-config-standard": "34.0.0",
"svelte": "4.2.2",
"svelte-check": "3.5.2",
"svelte-portal": "2.2.0",
"tailwindcss": "3.3.5",
"tslib": "2.6.2",
"tsx": "3.14.0",
"typescript": "5.2.2",
"unplugin-icons": "0.17.3",
"vite": "4.5.0",
"vite-plugin-tailwind-purgecss": "0.1.3",
"vitest": "1.0.4"
}
}