-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 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
{
"name": "next-light",
"version": "0.1.0",
"private": true,
"scripts": {
"dev" : "concurrently --raw \"bun run barrels\" \"next dev\"",
"build" : "next build",
"start" : "next start",
"test" : "bun tsc --noEmit",
"lint" : "npx eslint app/* components/* utils/* contexts/* schema/*",
"light" : "bun utils/commands/light.ts",
"barrels" : "bun run utils/commands/barrels.ts"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@react-google-maps/api": "^2.20.7",
"@tailwindcss/postcss": "^4.0.0",
"axios": "^1.12.0",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"exceljs": "^4.4.0",
"js-cookie": "^3.0.5",
"lz-string": "^1.5.0",
"moment": "^2.30.1",
"next": "16.1.1",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.4.394",
"postcss": "^8.5.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.0",
"validator": "^13.15.22"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/crypto-js": "^4.2.2",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/pdfjs-dist": "^2.10.378",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/validator": "^13.15.4",
"barrelsby": "^2.8.1",
"commander": "^14.0.2",
"concurrently": "^9.2.1",
"eslint": "^9.19.0",
"eslint-config-next": "^15.1.6",
"eslint-config-prettier": "^10.0.1",
"typescript": "^5"
}
}