-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.34 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
{
"name": "exercises__sep__05.complex-structures__sep__01.problem.nested",
"private": true,
"sideEffects": false,
"type": "module",
"imports": {
"#*": "./*"
},
"scripts": {
"build": "run-s build:*",
"build:remix": "remix build --sourcemap",
"build:server": "tsx ./other/build-server.ts",
"dev": "remix dev -c \"node ./server/dev-server.js\" --manual",
"test": "playwright test",
"start": "cross-env NODE_ENV=production node .",
"lint": "eslint .",
"typecheck": "tsc"
},
"dependencies": {
"@conform-to/react": "^0.9.0",
"@conform-to/zod": "^0.9.0",
"@mswjs/data": "^0.14.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@remix-run/css-bundle": "2.1.0",
"@remix-run/express": "2.1.0",
"@remix-run/node": "2.1.0",
"@remix-run/react": "2.1.0",
"@remix-run/serve": "2.1.0",
"address": "^2.0.1",
"chalk": "^5.3.0",
"class-variance-authority": "^0.7.0",
"close-with-grace": "^1.2.0",
"clsx": "^2.0.0",
"compression": "^1.7.4",
"crypto-js": "^4.1.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.1",
"get-port": "^7.0.0",
"glob": "^10.3.10",
"isbot": "^3.7.0",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-utils": "^7.1.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.39.0",
"@remix-run/dev": "2.1.0",
"@remix-run/eslint-config": "2.1.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/compression": "^1.7.4",
"@types/express": "^4.17.20",
"@types/fs-extra": "^11.0.2",
"@types/morgan": "^1.9.6",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"autoprefixer": "^10.4.16",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"esbuild": "^0.19.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"execa": "^9.6.1",
"fs-extra": "^11.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"remix-flat-routes": "^0.6.4",
"tsx": "^4.6.2",
"typescript": "^5.2.2"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/playwright-report",
"/server-build"
]
}