-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.62 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"build:seed": "tsc -p tsconfig.seed.json",
"seed": "node seeds/seed.js",
"dev": "remix dev",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc",
"pre-commit": "npm run lint && npm run format",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint ."
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/seeds/seed.js"
],
"dependencies": {
"@nasa-gcn/remix-seo": "^2.0.0",
"@prisma/client": "^5.1.1",
"@remix-run/css-bundle": "^2.0.0",
"@remix-run/node": "^2.0.0",
"@remix-run/react": "^2.0.0",
"@remix-run/serve": "^2.0.0",
"bcryptjs": "^2.4.3",
"isbot": "^3.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-markdown": "^8.0.7",
"tiny-invariant": "^1.3.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@remix-run/dev": "^2.0.0",
"@remix-run/eslint-config": "^2.0.0",
"@tailwindcss/typography": "^0.5.9",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.44.2",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"concurrently": "^8.2.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"prisma": "^5.1.1",
"tailwindcss": "^3.3.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}