This repository has been archived by the owner on Nov 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
101 lines (101 loc) · 3.05 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
{
"private": true,
"name": "boilerplate-remix",
"description": "",
"license": "",
"scripts": {
"dev": "run-p dev:*",
"dev:build": "cross-env NODE_ENV=development npm run build:server -- --watch",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"dev:server": "cross-env NODE_ENV=development node --inspect --require ./node_modules/dotenv/config ./build/server.js",
"build:remix": "remix build",
"build:server": "esbuild --platform=node --format=cjs ./app/lib/server.ts --outdir=build",
"build": "run-s build:*",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"generate": "prisma generate",
"lint:fix": "eslint --config .eslintrc.commit.js --fix --cache --ext .ts,.tsx app",
"lint": "eslint --config .eslintrc.commit.js --ext .ts,.tsx app",
"pre-commit": "lint-staged",
"prettify": "prettier --write app",
"start": "cross-env NODE_ENV=production node ./build/server.js",
"typecheck": "tsc --noEmit"
},
"prisma": {
"schema": "./prisma/schema.prisma"
},
"lint-staged": {
"*.(ts|tsx)": [
"eslint --fix --config .eslintrc.commit.js"
],
"*.(js|jsx|json|ts|tsx|html)": [
"prettier --write"
]
},
"dependencies": {
"@chakra-ui/icons": "2.0.11",
"@chakra-ui/react": "2.3.5",
"@emotion/cache": "11.10.3",
"@emotion/react": "11.10.4",
"@emotion/server": "11.10.0",
"@emotion/styled": "11.10.4",
"@prisma/client": "4.4.0",
"@remix-run/express": "1.7.2",
"@remix-run/node": "1.7.2",
"@remix-run/react": "1.7.2",
"@remix-run/server-runtime": "1.7.2",
"@sendgrid/client": "7.7.0",
"@sendgrid/mail": "7.7.0",
"aws-sdk": "2.1231.0",
"bcrypt": "5.1.0",
"compression": "1.7.4",
"cross-env": "7.0.3",
"dayjs": "1.11.5",
"dotenv": "16.0.3",
"framer-motion": "7.5.3",
"handlebars": "4.7.7",
"jsonwebtoken": "8.5.1",
"morgan": "1.10.0",
"nodemailer": "6.8.0",
"prisma": "4.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"react-icons": "4.4.0",
"zod": "3.19.1"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@remix-run/dev": "1.7.2",
"@remix-run/eslint-config": "1.7.2",
"@types/bcrypt": "5.0.0",
"@types/compression": "1.7.2",
"@types/express": "4.17.14",
"@types/jsonwebtoken": "8.5.9",
"@types/morgan": "1.9.3",
"@types/nodemailer": "6.4.6",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"esbuild": "0.15.10",
"esbuild-register": "3.3.3",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"typescript": "4.8.4"
},
"engines": {
"node": ">=16"
},
"resolutions": {
"prettier": "2.7.1"
},
"sideEffects": false
}