-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 4.42 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
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
{
"name": "activistchecklist",
"version": "1.0.0",
"description": "ActivistChecklist.org",
"license": "GNU GPLv3",
"private": true,
"scripts": {
"dev": "concurrently -n \"API,PROXY,NEXT\" -c \"blue,yellow,green\" \"NODE_NO_WARNINGS=1 yarn api:dev\" \"NODE_NO_WARNINGS=1 local-ssl-proxy --source 3001 --target 3000\" \"yarn next dev\"",
"prestoryblockexport": "mkdir -p content public/images",
"storyblockexportimages": "NODE_OPTIONS='--experimental-vm-modules' node scripts/export-stroyblok.mjs --yaml --mode images --images ./public/images --verbose",
"storyblockexportcontent": "NODE_OPTIONS='--experimental-vm-modules' node scripts/export-stroyblok.mjs --yaml --mode content --content ./content --verbose",
"prebuild": "yarn storyblockexportimages",
"build": "NEXT_TELEMETRY_DISABLED=1 next build",
"postbuild": "next-sitemap && yarn index && if [ \"$BUILD_MODE\" = \"static\" ]; then cp public/.htaccess out/.htaccess; fi",
"index": "NODE_ENV=${NODE_ENV} bash scripts/build-search-index.sh",
"buildstatic": "BUILD_MODE=static yarn build && yarn checkbuild",
"checkbuild": "node scripts/check-build.mjs",
"serve": "npx serve out",
"start": "next start",
"clean": "rm -rf .next build node_modules out yarn.lock && yarn next clean && yarn cache clean && yarn install",
"deploy": "yarn buildstatic && source .env && upload",
"release": "yarn storyblockexportcontent && git checkout main && git commit -am \"Content update: $(date '+%Y-%m-%d %H:%M:%S')\" && git push && yarn deploy",
"api:dev": "source .env && fastify start --watch --ignore-watch '.git node_modules out .next content public scripts utils styles pages config compontents' --log-level info --pretty-logs --port ${API_PORT:-4321} api/server.js",
"api:start": "yarn run pm2 start api/start.js --name ac-api",
"api:stop": "yarn run pm2 stop ac-api",
"api:restart": "yarn run pm2 restart ac-api",
"api:status": "yarn run pm2 status ac-api",
"api:delete": "yarn run pm2 delete ac-api",
"api:logs": "yarn run pm2 logs ac-api"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/helmet": "^13.0.0",
"@fastify/rate-limit": "^10.2.1",
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-context-menu": "^2.2.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-hover-card": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-menubar": "^1.1.2",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.4",
"@storyblok/react": "^4.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"dotenv": "^16.4.7",
"fastify": "^5.2.0",
"lucide-react": "^0.468.0",
"next": "^15.1.2",
"next-themes": "^0.4.4",
"openpgp": "^6.0.1",
"pm2": "^5.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.54.0",
"react-icons": "^5.4.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"storyblok-rich-text-react-renderer": "^2.9.2",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"add": "^2.0.6",
"autoprefixer": "^10.4.20",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"concurrently": "^9.1.0",
"fastify-cli": "^7.2.0",
"js-yaml": "^4.1.0",
"local-ssl-proxy": "^2.0.5",
"next-sitemap": "^4.2.3",
"node-fetch": "^3.3.2",
"pagefind": "^1.3.0",
"postcss": "^8.4.49",
"react-json-view": "^1.21.3",
"storyblok-backup": "^0.5.0",
"storyblok-js-client": "^6.10.3",
"tailwindcss": "^3.4.16",
"yarn": "^1.22.22"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}