forked from Kobby-Bawuah/remixvercel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.43 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
{
"private": true,
"name": "web",
"description": "",
"license": "",
"scripts": {
"postinstall": "npx remix setup node",
"start": "npx remix-serve build",
"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",
"gql-codegen": "graphql-codegen --config codegen.yml",
"swagger-codegen": "cd app/api && node codegen.js",
"test": "jest"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^1.0.6",
"@mui/material": "^5.10.8",
"@remix-run/react": "^1.3.4",
"@remix-run/serve": "^1.3.4",
"@sentry/remix": "^7.34.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/typography": "*",
"@tinymce/tinymce-react": "^4.2.0",
"@vercel/analytics": "^0.1.6",
"cheerio": "^1.0.0-rc.12",
"date-fns": "^2.28.0",
"html-react-parser": "^3.0.7",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
"lru-cache": "^7.14.1",
"marked": "^4.2.5",
"react": "^17.0.2",
"react-countup": "^6.3.2",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^17.0.2",
"react-dropzone": "^14.2.3",
"react-helmet": "^6.1.0",
"react-markdown": "^6.0.0",
"react-toastify": "8.2.0",
"remark-directive": "^1.0.1",
"remark-directive-rehype": "^0.4.0",
"remix": "^1.3.4",
"swagger-typescript-api": "^10.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@remix-run/dev": "^1.3.4",
"@tailwindcss/forms": "^0.5.0",
"@types/jest": "^29.2.5",
"@types/lodash": "^4.14.182",
"@types/marked": "^4.0.8",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.6",
"@types/uuid": "^9.0.0",
"autoprefixer": "^10.4.2",
"babel-jest": "^29.3.1",
"concurrently": "^7.0.0",
"jest": "^29.3.1",
"postcss": "^8.4.8",
"tailwindcss": "^3.0.23",
"ts-jest": "^29.0.3",
"typescript": "^4.1.2"
},
"engines": {
"node": "16"
},
"sideEffects": false
}