-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.31 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"## DOCKER ##": "",
"website": "docker compose --file docker-compose.website.yml --project-name website up -d --force-recreate --build website",
"logs": "docker container logs website -f -n 100",
"lint": "docker exec -it website npm run .lint",
"## LOCAL/CODESPACE ##": "",
".dev": "NODE_OPTIONS='--inspect' next dev",
".lint": "next lint",
".start": "next start"
},
"engines": {
"node": "v21.4.0",
"npm": "10.2.4"
},
"dependencies": {
"@discordjs/rest": "^2.2.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"@mui/x-data-grid": "^6.18.4",
"@mui/x-date-pickers": "^6.18.4",
"@nextui-org/react": "^2.2.9",
"@srexi/purecounterjs": "^1.5.0",
"@tanstack/react-query": "^5.13.4",
"@widgetbot/react-embed": "^1.9.0",
"aos": "^2.3.4",
"apexcharts": "^3.44.2",
"autoprefixer": "10.4.16",
"axios": "^1.6.2",
"date-fns": "^2.30.0",
"discord-api-types": "^0.37.66",
"discord.js": "^14.14.1",
"kofi-button": "^1.1.1",
"material-react-table": "^2.0.5",
"next": "^14.0.4",
"particles-bg": "^2.5.5",
"postcss": "^8.4.32",
"react": "18.2.0",
"react-apexcharts": "^1.4.1",
"react-collapsible": "^2.10.0",
"react-countup": "^6.5.0",
"react-dom": "18.2.0",
"sharp": "^0.33.0",
"swiper": "^11.0.5",
"tailwindcss": "^3.3.6",
"tripsit_drug_db": "github:tripsit/drugs",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/aos": "^3.0.7",
"@types/node": "^20.10.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-sonarjs": "^0.23.0",
"npm-check-updates": "^16.14.11",
"prettier": "^3.1.1"
}
}