-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"name": "template",
"version": "1.0.0",
"description": "",
"main": "gulpfile.js",
"type": "module",
"author": "SeanGau",
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"build-production": "cross-env BUILD_MODE=production astro build",
"preview-production": "cross-env BUILD_MODE=production astro preview",
"build": "cross-env BUILD_MODE=staging astro build",
"preview": "cross-env BUILD_MODE=stagin astro preview",
"dev": "cross-env BUILD_MODE=staging astro dev",
"format": "prettier --write .",
"fetch-schedule": "node fetch-schedule.js"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/jquery": "^3.5.33",
"astro": "^5.17.2",
"cross-env": "^10.1.0",
"dotenv": "^17.3.1",
"fuse.js": "^7.1.0",
"jquery": "^4.0.0",
"opass-schedule-to-json": "^1.0.6",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"spreadsheet-to-json": "^2.0.0",
"tailwindcss": "^4.1.18"
}
}