-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
{
"name": "paradb",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:test": "ENV=.env.test NODE_ENV=test next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier . --write",
"schema": "tools/update_schema.sh",
"outage": "bun src/outage/index.ts",
"search:rebuild": "bun src/services/_migrations/rebuild_meilisearch.ts",
"test": "tools/test.sh"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.414.0",
"@sentry/nextjs": "^7.77.0",
"@types/node": "20.4.3",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@types/sanitize-html": "^2.9.0",
"bcrypt": "^5.1.1",
"camelcase-keys-recursive": "^1.0.0",
"classnames": "^2.3.2",
"dotenv": "^16.3.1",
"encoding": "^0.1.13",
"eslint": "8.45.0",
"eslint-config-next": "13.4.12",
"iron-session": "^6.3.1",
"meilisearch": "^0.34.2",
"mobx": "^6.10.2",
"mobx-react": "^9.0.1",
"mobx-utils": "^6.0.8",
"msgpackr": "^1.9.9",
"next": "13.4.12",
"pg": "^8.11.3",
"qs": "^6.11.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"sanitize-html": "^2.11.0",
"server-only": "^0.0.1",
"snakecase-keys": "^5.4.6",
"typescript": "5.1.6",
"unzipper": "^0.10.14",
"zapatos": "^6.1.4",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.5",
"@types/pg": "^8.10.2",
"@types/qs": "^6.9.8",
"@types/supertest": "^2.0.12",
"@types/unzipper": "^0.10.7",
"@types/zxcvbn": "^4.4.2",
"jest": "^29.7.0",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.0.3",
"supertest": "^6.3.3"
}
}