-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.38 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "rs3_quest_buddy",
"homepage": "https://techpure.dev/RS3QuestBuddy",
"version": "0.1.0",
"scripts": {
"db:seed:missingQuests": "tsx ./src/scripts/missingSeeds.ts",
"db:seed:quests": "tsx ./src/scripts/seedQuestsQuestDetails.ts",
"db:seed:npcs": "tsx ./src/scripts/seedNPCs.ts",
"db:seed:chatheads": "tsx ./src/scripts/seedChathead.ts",
"db:seed:steps": "tsx ./src/scripts/seed-QuestSteps.ts",
"db:seed:images": "tsx ./src/scripts/seed-quest-images.ts",
"db:seed:rewards": "tsx ./src/scripts/seed-Quest-Rewards.ts",
"db:seed:all": "npm run db:seed:quests && npm run db:seed:npcs && npm run db:seed:steps && npm run db:seed:images && npm run db:seed:rewards",
"db:studio": "dotenv -e .env -- drizzle-kit studio",
"db:gen": "dotenv -e .env -- drizzle-kit generate",
"db:migrate": "dotenv -e .env -- drizzle-kit migrate",
"build": "webpack && node build-script.mjs",
"watch": "webpack --watch",
"start": "webpack-dev-server",
"deploy": "node deploy.js"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mantine/carousel": "8.1.2",
"@mantine/core": "8.1.2",
"@orrisroot/react-html-parser": "^2.1.2",
"@tabler/icons-react": "3.33.0",
"@tippyjs/react": "^4.2.6",
"@tiptap/extension-link": "^2.1.16",
"@tiptap/react": "^2.1.16",
"@tiptap/starter-kit": "^2.1.16",
"alt1": "0.1.2",
"axios": "^1.7.9",
"crypto-js": "^4.2.0",
"drizzle-orm": "^0.44.7",
"electron": "^38.2.2",
"embla-carousel-react": "8.6.0",
"express": "^4.21.2",
"gh-pages": "^6.2.0",
"idb-keyval": "^6.2.2",
"immer": "^11.0.0",
"mini-css-extract-plugin": "^2.9.2",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"pg": "^8.16.3",
"pg-pool": "^3.10.1",
"quill": "^2.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-js-cron": "^4.0.0",
"react-markdown": "^10.1.0",
"react-quilljs": "^2.0.5",
"react-router-dom": "^6.18.0",
"react-serialize": "^0.2.1",
"react-virtualized-auto-sizer": "^1.0.26",
"react-window": "^2.2.3",
"remark-gfm": "^4.0.1",
"sharp": "0.34.1",
"socket.io-client": "^4.8.1",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"util": "^0.12.5",
"zustand": "^5.0.8"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-decorators": "^7.23.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.10.6",
"@types/node-cron": "^3.0.8",
"@types/pg": "^8.15.5",
"@types/quill": "^2.0.14",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.5",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"dotenv-cli": "^10.0.0",
"drizzle-kit": "^0.31.6",
"eslint": "9.27.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.20",
"html-webpack-plugin": "^5.6.3",
"node-cron": "4.0.5",
"postcss": "^8.4.33",
"postcss-preset-mantine": "^1.12.3",
"postcss-simple-vars": "^7.0.1",
"prettier": "3.5.3",
"react-quill": "^2.0.0",
"style-loader": "^4.0.0",
"tsx": "^4.20.6",
"webpack": "5.99.8",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.1",
"webpack-manifest-plugin": "^5.0.1"
}
}