-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
112 lines (112 loc) · 3.33 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
105
106
107
108
109
110
111
112
{
"name": "thoriumsim.com",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:prisma": "prisma generate",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:remix": "cross-env NODE_ENV=development remix dev",
"dev:css": "cross-env NODE_ENV=development npm run generate:css -- --watch",
"format": "prettier --write .",
"generate:css": "tailwindcss -i ./app/tailwind/tailwind.css -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve build",
"validate": "run-p lint typecheck",
"typecheck": "tsc --noEmit"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@aws-sdk/client-ses": "^3.72.0",
"@headlessui/react": "^1.5.0",
"@prisma/client": "^4.11.0",
"@remix-run/express": "^1.4.0",
"@remix-run/node": "^1.4.0",
"@remix-run/react": "^1.4.0",
"@remix-run/serve": "^1.4.0",
"@remix-run/server-runtime": "^1.4.0",
"@tailwindcss/typography": "^0.5.2",
"@thorium-sim/react-mde": "^11.5.0",
"@types/random-words": "^1.1.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"discord-api-types": "^0.31.1",
"express": "^4.17.3",
"limiter": "^2.1.0",
"morgan": "^1.10.0",
"nodemailer": "^6.7.3",
"property-information": "^6.1.1",
"random-words": "^1.1.2",
"react": "^17.0.2",
"react-datepicker": "^4.7.0",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.3.1",
"react-markdown": "^8.0.2",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remix-utils": "^3.0.0",
"rss": "^1.2.2",
"tiny-invariant": "^1.2.0",
"unified": "^10.1.2",
"vfile": "^5.3.2",
"words-count": "^2.0.2"
},
"devDependencies": {
"@faker-js/faker": "^6.1.1",
"@remix-run/dev": "^1.4.0",
"@remix-run/eslint-config": "^1.4.0",
"@testing-library/dom": "^8.12.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^14.0.4",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/eslint": "^8.4.1",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.23",
"@types/nodemailer": "^6.4.4",
"@types/react": "^17.0.43",
"@types/react-datepicker": "^4.4.0",
"@types/react-dom": "^17.0.14",
"@types/rss": "^0.0.29",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^10.4.4",
"c8": "^7.11.0",
"dotenv": "^16.0.0",
"esbuild": "^0.14.29",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"happy-dom": "^2.55.0",
"msw": "^0.39.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"prettier": "^2.6.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"prisma": "^4.11.0",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3",
"vite": "^2.9.1",
"vite-tsconfig-paths": "^3.4.1",
"vitest": "^0.8.2"
},
"engines": {
"node": "18.x"
}
}