-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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": "coinorganizer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "./node_modules/.bin/prisma generate && next build",
"start": "next start",
"lint": "next lint",
"backup-database": "pg_dump \"${POSTGRES_LOCAL_COINDB}\" --column-inserts > db/numisdb_backup.sql",
"test": "jest --watch",
"studio": "npx prisma studio"
},
"dependencies": {
"@amcharts/amcharts5": "^5.8.4",
"@amcharts/amcharts5-geodata": "^5.1.2",
"@auth/prisma-adapter": "^1.5.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.13",
"@mui/material": "^5.15.13",
"@mui/x-date-pickers": "^6.19.6",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.11.0",
"algoliasearch": "^4.22.1",
"axios": "^1.6.7",
"country-flag-icons": "^1.5.9",
"dayjs": "^1.11.10",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"eslint-config-prettier": "^9.1.0",
"limiter": "^2.1.0",
"moment": "^2.30.1",
"next": "^14.1.3",
"next-auth": "^4.24.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-instantsearch": "^7.7.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.27",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.22",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"prisma": "^5.11.0",
"typescript": "^5.4.2"
}
}