-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.48 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "sj3",
"version": "1.1.2",
"private": true,
"repository": "https://github.com/Decatur-Robotics/Gearbox",
"license": "CC BY-NC-SA 4.0",
"scripts": {
"dev": "cross-env NODE_ENV=development npx tsx index.ts",
"build": "next build",
"start": "cross-env NODE_ENV=production npx tsx index.ts",
"restart": "next build && cross-env NODE_ENV=production npx tsx index.ts",
"test": "jest",
"docker-build": "docker build -t gearbox .",
"docker-start": "docker run -i -t -p 443:443 gearbox",
"docker-prune": "docker container prune",
"lint": "eslint . --max-warnings=0",
"prettier-fix": "prettier --write ./**/*.{js,tsx,jsx,json,ts}",
"prettier-check": "prettier --check ./**/*.{js,tsx,jsx,json,ts}"
},
"dependencies": {
"@next-auth/mongodb-adapter": "^1.1.3",
"@slack/bolt": "^4.2.0",
"@slack/web-api": "^7.8.0",
"@types/http-proxy": "^1.17.15",
"@types/react-dom": "18.3.1",
"@types/socket.io-client": "^3.0.0",
"@yudiel/react-qr-scanner": "^2.1.0",
"bootstrap": "^5.3.3",
"browser-image-compression": "^2.0.2",
"bson": "^5.0.0",
"cloc": "^2.11.0",
"dependencies": "^0.0.1",
"dotenv": "^16.4.7",
"eslint": "9.17.0",
"eslint-config-next": "15.0.3",
"formidable": "^3.5.2",
"jose": "^5.9.6",
"levenary": "^1.1.1",
"minimongo": "^6.19.0",
"mongodb": "^5.0.0",
"next": "^15.1.0",
"next-auth": "^4.24.10",
"next-pwa": "^5.6.0",
"next-seo": "^6.6.0",
"nodemailer": "^6.9.16",
"omit-call-signature": "^1.0.15",
"react": "18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-bootstrap": "^2.10.5",
"react-chartjs-2": "^5.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.3.1",
"react-ga4": "^2.1.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.4.0",
"react-p5": "^1.4.1",
"react-qr-code": "^2.0.15",
"resend": "^4.0.0",
"slack": "^11.0.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"string-similarity-js": "^2.1.4",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "5.6.2",
"unified-api": "^1.0.12",
"unified-api-nextjs": "^1.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"@types/formidable": "^3.4.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/react": "^18.3.8",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"daisyui": "^4.12.22",
"jest": "^29.7.0",
"postcss": "^8.4.49",
"prettier": "3.3.3",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.2.5"
}
}