forked from grebsu/Ouroboros
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·111 lines (111 loc) · 3.22 KB
/
package.json
File metadata and controls
executable file
·111 lines (111 loc) · 3.22 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
107
108
109
110
111
{
"name": "ouroboros",
"description": "Aplicação open-source e gratuita de planejamento de estudos, projetada para ajudar estudantes e concurseiros a otimizar sua rotina, com foco na democratização do acesso a ferramentas de alta performance.",
"version": "1.1.3",
"homepage": "https://github.com/grebsu/Ouroboros",
"author": {
"name": "Grebsu",
"email": "glebson.olvr@gmail.com"
},
"main": "electron/main.js",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"setup": "node setup-env.js",
"dev:electron": "concurrently \"npm run dev\" \"wait-on http://localhost:3000 && cross-env ELECTRON_START_URL=http://localhost:3000 electron electron/main.js\"",
"build:electron": "rimraf .next dist .cache/puppeteer && npx puppeteer browsers install chrome && next build && electron-builder",
"build:electron:win": "rimraf .next dist .cache/puppeteer && cross-env PUPPETEER_PLATFORM=win64 npx puppeteer browsers install chrome && next build && electron-builder --win"
},
"build": {
"appId": "com.ouroboros.app",
"productName": "Ouroboros",
"icon": "build/icon.png",
"files": [
"dist/**/*",
"electron/**/*",
"package.json",
".next/**/*",
"public/**/*"
],
"extraResources": [
{
"from": "data/",
"to": "data/",
"filter": [
"**/*"
]
},
{
"from": ".cache/puppeteer",
"to": ".cache/puppeteer",
"filter": [
"**/*"
]
}
],
"linux": {
"target": [
"deb",
"AppImage"
],
"category": "Utility",
"icon": "build/icons"
},
"win": {
"target": "nsis",
"icon": "build/icons/256x256.png"
}
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@types/react-datepicker": "^6.2.0",
"bcryptjs": "^3.0.2",
"chart.js": "^4.5.0",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-datalabels": "^2.2.0",
"chartjs-plugin-zoom": "^2.2.0",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"geist": "^1.4.2",
"lucide-react": "^0.539.0",
"next": "^14.2.32",
"next-auth": "^4.24.11",
"node-fetch": "^3.3.2",
"puppeteer": "^24.20.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.0",
"react-datepicker": "^8.4.0",
"react-day-picker": "^9.8.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"concurrently": "^8.0.0",
"electron": "^30.0.0",
"electron-builder": "^24.0.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.31",
"postcss": "^8.5.6",
"rimraf": "^5.0.7",
"tailwindcss": "^3.4.17",
"tw-animate-css": "^1.3.6",
"typescript": "^5",
"wait-on": "^7.0.0"
}
}