-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 3.43 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
{
"name": "festival",
"description": "Festival",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/stephenwade/festival.git"
},
"type": "module",
"scripts": {
"prepare": "husky; prisma generate",
"dev": "remix vite:dev",
"build": "remix vite:build",
"start": "remix-serve ./build/server/index.js",
"lint:eslint": "eslint . --max-warnings 0",
"lint:stylelint": "stylelint \"**/*.css\" --ignore-path .gitignore --max-warnings 0",
"lint:prettier": "prettier . --check --ignore-path .gitignore --log-level warn",
"lint:knip": "knip",
"lint:dpdm": "dpdm 'app/routes/*' --no-tree --no-warning --exit-code circular:1",
"lint:tsc": "tsc",
"lint": "npm-run-all lint:*",
"format:eslint": "eslint . --fix --ignore-path .gitignore",
"format:stylelint": "stylelint \"**/*.css\" --fix --ignore-path .gitignore",
"format:prettier": "prettier . --write --ignore-path .gitignore --log-level warn",
"format:knip": "knip --fix",
"format": "npm-run-all format:*",
"test": "playwright test",
"test-ct": "playwright test -c playwright-ct.config.ts"
},
"dependencies": {
"@azure/storage-blob": "12.26.0",
"@clerk/remix": "4.4.6",
"@prisma/client": "5.22.0",
"@remix-run/node": "2.13.1",
"@remix-run/react": "2.13.1",
"@remix-run/serve": "2.13.1",
"@remix-validated-form/with-zod": "2.0.7",
"date-fns": "3.6.0",
"nanoid": "5.0.9",
"node-cache": "5.1.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-timezone-select": "3.2.8",
"react-toastify": "10.0.6",
"remix-utils": "7.7.0",
"remix-validated-form": "5.1.5",
"standardized-audio-context": "25.3.77",
"temporal-polyfill": "0.2.5",
"use-local-storage-state": "19.5.0",
"usehooks-ts": "3.1.0",
"zod": "3.24.1",
"zod-form-data": "2.0.5"
},
"devDependencies": {
"@eslint/compat": "1.2.4",
"@eslint/js": "9.17.0",
"@playwright/experimental-ct-react": "1.49.1",
"@playwright/test": "1.49.1",
"@remix-run/dev": "2.13.1",
"@remix-run/testing": "2.13.1",
"@types/eslint__js": "8.42.3",
"@types/eslint-config-prettier": "6.11.3",
"@types/eslint-plugin-jsx-a11y": "6.10.0",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"dotenv": "16.4.7",
"dpdm": "3.14.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-playwright": "2.1.0",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unicorn": "56.0.1",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "15.14.0",
"husky": "9.1.7",
"knip": "5.41.1",
"lint-staged": "15.3.0",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"prisma": "5.22.0",
"stylelint": "16.12.0",
"stylelint-config-hudochenkov": "11.0.0",
"stylelint-config-standard": "36.0.1",
"stylelint-order": "6.0.4",
"svgo": "3.3.2",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0",
"use-deep-compare": "1.3.0",
"vite": "5.4.11",
"vite-tsconfig-paths": "5.1.4"
},
"lint-staged": {
"*.css": "stylelint --fix",
"*.prisma": "prisma format --schema",
"*.svg": "svgo",
"*": "prettier --ignore-unknown --write --ignore-path .gitignore"
}
}