-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.2 KB
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
{
"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": "eslint .",
"lint:fix": "eslint . --fix",
"docker:lint": "docker exec -it website npm run lint",
"docker:lint:fix": "docker exec -it website npm run lint:fix",
"## LOCAL/CODESPACE ##": "",
"dev": "set NODE_OPTIONS=--inspect && next dev",
".dev": "NODE_OPTIONS=--inspect next dev",
".lint": "next lint",
".start": "next start"
},
"engines": {
"node": ">=23.9.0 || >=22.14.0",
"npm": ">=10.9.2"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.6",
"@mui/material": "^6.4.6",
"@mui/x-date-pickers": "^7.27.1",
"@nextui-org/react": "^2.6.11",
"@tailwindcss/postcss": "^4.0.9",
"@tanstack/react-query": "^5.66.11",
"@widgetbot/react-embed": "^1.9.0",
"aos": "^2.3.4",
"apexcharts": "^4.5.0",
"autoprefixer": "10.4.20",
"axios": "^1.8.1",
"date-fns": "^4.1.0",
"discord-api-types": "^0.38.0",
"kofi-button": "^1.1.1",
"material-react-table": "^3.2.1",
"next": "^15.2.0",
"particles-bg": "^2.5.5",
"react": "^18.3.1",
"react-apexcharts": "^1.7.0",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
"swiper": "^11.2.4",
"tailwindcss": "^4.0.9",
"tripsit_drug_db": "github:tripsit/drugs",
"typescript": "^5.8.2"
},
"devDependencies": {
"@types/aos": "^3.0.7",
"@types/node": "^22.13.8",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.2.24",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-sonarjs": "^0.25.1",
"prettier": "^3.5.2"
}
}