-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 2 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
{
"name": "blue-ridge-boost",
"version": "0.0.1",
"license": "UNLICENSED",
"author": "Nora Evans",
"type": "module",
"scripts": {
"config": "node ./scripts/config-generation.mjs",
"aiGen": "node ./scripts/classes/keywords-and-topics.mjs",
"camp-rosters": "node ./scripts/rosters/camp-rosters.mjs",
"create-summer-camps": "node ./scripts/summer-camps/summer-camps.mjs",
"update-summer-camps": "node ./scripts/summer-camps/update-availability.mjs",
"summer-camps-summary": "node ./scripts/rosters/summer-camps-summary.mjs",
"update-skus": "node ./scripts/update-skus.mjs",
"class-rosters": "node ./scripts/rosters/all-classes.mjs",
"clean": "rimraf docs",
"html": "hugo --destination docs --source ./src/",
"copy": "cpy --no-parents CNAME docs && cpy src/docs/**/* ./docs",
"github": "npm run clean && npm run config && npm run build && npm run copy && git add -A :/ && git commit -m '$npm_config_message' && git push",
"githubdev": "npm run github",
"dev": "hugo server --disableFastRender --buildDrafts --watch --destination docs --source ./src/",
"build": "hugo --gc --minify --templateMetrics --templateMetricsHints --buildDrafts --buildExpired --buildFuture --forceSyncStatic --source ./src/ --destination ./docs",
"preview": "hugo server --disableFastRender --navigateToChanged --templateMetrics --templateMetricsHints --buildDrafts --buildExpired --buildFuture --watch --forceSyncStatic -e production --minify --source ./src/",
"format": "prettier -w ."
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^6.0.0",
"cpy-cli": "^5.0.0",
"open-cli": "^6.0.0",
"postcss": "^8.4.41",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.3",
"prettier-plugin-go-template": "0.0.15",
"rimraf": "^6.1.3"
},
"dependencies": {
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"form-data": "^4.0.4",
"googleapis": "^171.4.0",
"js-yaml": "^4.1.0",
"openai": "^6.4.0",
"papaparse": "^5.5.3",
"xlsx": "^0.18.5"
}
}