-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "wind-calendar",
"version": "1.0.0",
"author": "Augustin Riedinger",
"license": "MIT",
"scripts": {
"back": "nodemon --ignore ./cache --ignore ./front --exec ts-node index.ts",
"front": "parcel serve front/index.html --dist-dir dist",
"start": "yarn install && parcel build front/index.html --dist-dir dist --public-url $HOST && ts-node index.ts"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@parcel/packager-raw-url": "2.13.0",
"@parcel/transformer-sass": "2.13.0",
"@parcel/transformer-webmanifest": "2.13.0",
"@types/node": "^22.9.0",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.1",
"express": "^4.18.2",
"geo-tz": "^7.0.7",
"ical-generator": "^5.0.1",
"leaflet": "^1.9.4",
"node-cron": "^3.0.2",
"nodemon": "^3.0.1",
"parcel": "^2.9.3",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-slider": "^2.0.6",
"styled-components": "^6.0.8",
"suncalc": "^1.9.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}