-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "basic-starter",
"version": "1.7.2",
"private": true,
"license": "MIT",
"scripts": {
"predev": "next lint",
"dev": "next dev -H front.drupal.docksal",
"build": "next build",
"start": "next start",
"preview": "next build && next start",
"lint": "next lint",
"syncAlgolia": "ts-node scripts/syncAlgolia.mjs"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@prisma/client": "^5.22.0",
"@react-google-maps/api": "^2.20.3",
"@tailwindcss/typography": "^0.5.15",
"algoliasearch": "^5.10.2",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"i18next": "^23.12.2",
"instantsearch.js": "^4.75.3",
"lodash": "^4.17.21",
"next": "^13",
"next-auth": "^4.24.8",
"next-i18next": "^15.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-instantsearch": "^7.13.6",
"sharp": "^0.31.2"
},
"devDependencies": {
"@types/node": "^18.11.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"autoprefixer": "^10.4.13",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.5.6",
"postcss": "^8.4.19",
"prisma": "^5.22.0",
"sass": "^1.77.8",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.3"
}
}