-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.86 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
{
"name": "easykaksha",
"version": "1.0.0",
"description": "EASYकक्षा - A virtual classroom designed specifically for rural diploma colleges with low bandwidth and infrastructure challenges",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:init": "node scripts/init-db.js",
"backup": "node scripts/backup.js",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit"
},
"dependencies": {
"next": "^14.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"better-sqlite3": "^9.0.0",
"@types/better-sqlite3": "^7.6.0",
"tailwindcss": "^3.3.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"socket.io": "^4.7.0",
"socket.io-client": "^4.7.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.5",
"next-pwa": "^5.6.0",
"workbox-webpack-plugin": "^7.0.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"@types/jest": "^29.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0"
},
"keywords": [
"virtual-classroom",
"rural-education",
"low-bandwidth",
"distance-learning",
"education-technology",
"offline-first",
"progressive-web-app"
],
"author": "EASYकक्षा Development Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/easykaksha/easykaksha.git"
},
"bugs": {
"url": "https://github.com/easykaksha/easykaksha/issues"
},
"homepage": "https://github.com/easykaksha/easykaksha#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}