-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.08 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.08 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
{
"type": "module",
"name": "taskquest",
"version": "1.0.0",
"description": "**TaskQuest** transforms team task management into a narrative-driven quest. It's a gamified workflow engine where users complete tasks in structured \"quests\", earn XP, level up, and receive WhatsApp notifications throughout the journey.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "concurrently \"npm run watch\" \"npm run dev-server\"",
"dev-server": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm install && echo 'Build step completed - dependencies installed'",
"watch": "npx tailwindcss -i styles.css -o dist/styles.css --watch",
"all": "concurrently 'npm run watch' 'npm run dev'",
"prod": "node index.js",
"start:prod": "npm run build && npm run prod",
"seed:botcommands": "node scripts/seedBotCommands.js",
"export:botcommands": "node scripts/exportLocalBotCommands.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subhamagarrwal/TaskQuest.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/subhamagarrwal/TaskQuest/issues"
},
"homepage": "https://github.com/subhamagarrwal/TaskQuest#readme",
"dependencies": {
"@apollo/server": "^4.12.2",
"@tailwindcss/postcss": "^4.1.10",
"apollo-server-express": "^3.13.0",
"body-parser": "^2.2.0",
"bullmq": "^5.56.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-session": "^1.18.1",
"firebase": "^11.9.1",
"firebase-admin": "^13.4.0",
"graphql": "^16.11.0",
"graphql-http": "^1.22.4",
"graphql-request": "^7.2.0",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.0",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"tailwindcss": "^4.1.10",
"telegraf": "^4.16.3"
},
"devDependencies": {
"concurrently": "^9.2.0",
"nodemon": "^3.1.10"
}
}