-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.66 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"postbuild": "./scripts/sync-email-templates.sh",
"dev": "remix build && ./scripts/sync-email-templates.sh && run-p \"dev:*\"",
"dev:node": "cross-env NODE_ENV=development nodemon ./server.js --watch ./server.js",
"dev:remix": "remix watch",
"lint": "eslint '**/*.js'",
"prestart": "npx prisma migrate deploy",
"lint-react": "eslint '**/*.jsx'",
"lint-fix-all": "eslint --fix '**/*.js'",
"lint-fix-all-react": "eslint --fix '**/*.jsx'",
"lint-fix-dry-run": "eslint --fix-dry-run '**/*.js'",
"start": "cross-env NODE_ENV=production node ./server.js",
"test:integration": "dotenv -e .env.test.integration -- ./scripts/integration-test.sh",
"test:integration:watch": "dotenv -e .env.test.integration -- npx jest --runInBand --watchAll --testPathPattern=tests/integration/*",
"test:unit": "./scripts/unit-test.sh"
},
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@prisma/client": "^5.2.0",
"@remix-run/express": "^1.6.8",
"@remix-run/node": "^1.6.8",
"@remix-run/react": "^1.6.8",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^16.0.2",
"dotenv-cli": "^6.0.0",
"draft-js": "^0.11.7",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.1",
"jest": "^29.1.1",
"joi": "^17.6.1",
"lodash": "^4.17.21",
"markdown-draft-js": "^2.4.0",
"md5": "^2.3.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"nodemailer": "^6.9.0",
"nodemailer-express-handlebars": "^6.0.0",
"openai": "^4.12.1",
"pgvector": "^0.1.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-bootstrap": "0.33.1",
"react-dom": "^18.2.0",
"react-draft-wysiwyg": "^1.15.0",
"react-icons": "^4.4.0",
"react-markdown": "^8.0.3",
"react-router-bootstrap": "^0.26.2",
"react-router-dom": "^6.4.3",
"react-toastify": "^9.0.8",
"remark-gfm": "^3.0.1",
"remix-auth": "^3.3.0",
"remix-auth-auth0": "^1.4.0",
"remix-utils": "^3.3.0",
"slack-notify": "^2.0.3",
"styled-components": "^5.3.5",
"xss": "^1.0.14"
},
"devDependencies": {
"@babel/preset-env": "^7.19.3",
"@remix-run/dev": "^1.6.8",
"@remix-run/eslint-config": "^1.6.8",
"babel-jest": "^29.1.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"prisma": "^5.2.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=16"
}
}