-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.57 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.57 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
{
"dependencies": {
"bootstrap": "^5.3.7",
"jquery": "^3.7.1",
"sass": "^1.89.2"
},
"devDependencies": {
"@astrojs/tailwind": "^6.0.2",
"@playwright/test": "^1.53.1",
"@tailwindcss/postcss": "^4.1.10",
"astro": "^5.10.0",
"autoprefixer": "^10.4.21",
"playwright": "^1.53.1",
"postcss-cli": "^10.1.0",
"puppeteer": "^24.10.2",
"jsdom": "^26.1.0",
"vitest": "^1.5.1",
"svgo": "^4.0.0",
"tailwindcss": "^3.4.17",
"vite": "^6.3.5"
},
"scripts": {
"start:php": "sh scripts/start_php_server.sh",
"stop:php": "sh -c 'if [ -f .php_server.pid ]; then kill $(cat .php_server.pid); rm .php_server.pid; fi'",
"test:puppeteer": "node tests/manual/langBarOffsetTest.js && node tests/menuCompressionTest.js && node tests/muteToggleTest.js && node tests/manual/languagePanelOffsetTest.js && node tests/languagePanelBodyClassTest.js && node tests/moonToggleTest.js && node tests/linternaGradientTest.js && node tests/menuKeyboardNavigationTest.js && node tests/timelineDataTest.js && node tests/interactiveMapTest.js",
"test:playwright": "playwright test tests/phpRoutes.spec.js",
"test": "npm run start:php && npm run test:puppeteer && npm run test:playwright; npm run stop:php",
"build": "vite build && npx sass assets/scss/custom.scss assets/css/custom.css --no-source-map && postcss assets/css/custom.css -o assets/css/custom.css",
"build:forum": "npm --prefix frontend/forum-app run build",
"build:frontend": "npm run build && npm run build:forum",
"dev:astro": "astro dev",
"build:astro": "astro build"
}
}