-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.72 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
{
"name": "dsp2b-frontend",
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm run prebuild && remix build",
"dev": "npm run predev && remix dev --manual",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "npm run migrate && npm run generate && remix-serve ./build/index.js",
"typecheck": "tsc",
"migrate": "prisma db push",
"generate": "prisma generate",
"predev": "ts-node --project ./tsconfig.node.json ./scripts/prebuild.tsx",
"prebuild": "cross-env NODE_ENV=production ts-node --project ./tsconfig.node.json ./scripts/prebuild.tsx",
"crowdin": "crowdin"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@ant-design/static-style-extract": "^1.0.2",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@prisma/client": "^5.7.1",
"@remix-run/css-bundle": "^2.4.1",
"@remix-run/node": "^2.4.1",
"@remix-run/react": "^2.4.1",
"@remix-run/serve": "^2.4.1",
"@remixicon/react": "^4.0.1",
"antd": "^5.12.8",
"axios": "^1.6.5",
"bcrypt": "^5.1.1",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.10",
"framer-motion": "^10.18.0",
"i18next": "^23.7.12",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-fs-backend": "^2.3.1",
"i18next-http-backend": "^2.4.2",
"isbot": "^3.6.8",
"lodash": "^4.17.21",
"marked": "^11.2.0",
"minio": "^7.1.3",
"nodemailer": "^6.9.7",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.0",
"react-lazy-load-image-component": "^1.6.0",
"remix-auth": "^3.6.0",
"remix-auth-discord": "^1.3.2",
"remix-auth-form": "^1.4.0",
"remix-auth-oauth2": "^1.11.1",
"remix-i18next": "^5.5.0",
"tailwindcss": "^3.4.0",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"xss": "^1.0.14"
},
"devDependencies": {
"@remix-run/dev": "^2.4.1",
"@types/bcrypt": "^5.0.2",
"@types/lodash": "^4.14.202",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.20",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.7",
"@types/react-lazy-load-image-component": "^1.6.3",
"@types/uuid": "^9.0.7",
"@types/validator": "^13.11.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prisma": "^5.7.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}