-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"deploy": "fly deploy --remote-only",
"start": "remix-serve build",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.171.0",
"@aws-sdk/s3-request-presigner": "^3.171.0",
"@prisma/client": "^4.3.1",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.12",
"concurrently": "^7.4.0",
"eslint": "^8.23.1",
"jsdom": "^20.0.0",
"msw": "^0.47.3",
"node-fetch": "^3.2.10",
"postcss": "^8.4.16",
"prisma": "^4.3.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"vitest": "^0.23.4"
},
"engines": {
"node": ">=14"
},
"msw": {
"workerDirectory": "public"
}
}