-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.36 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
47
48
49
50
51
52
53
54
55
56
{
"name": "vrton-web",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"generate:content": "node scripts/generate-content.mjs",
"predev": "npm run generate:content",
"prebuild": "npm run generate:content",
"dev:clean": "pkill -f 'vite' 2>/dev/null; sleep 1; npm run dev",
"dev": "concurrently -n PUB,ADMIN -c \"cyan,magenta\" \"vite\" \"vite --config vite-admin.config.ts --port 5174\"",
"dev:admin": "pkill -f 'vite.*5174' 2>/dev/null; npx vite --config vite-admin.config.ts --port 5174",
"build": "vite build",
"test:prepush": "npm run test:drag && npm run build",
"test:drag": "node --test src/utils/theme.test.js src/utils/accessibility.test.js src/pages/adminDragModel.test.js src/utils/mediaEmbeds.test.js src/utils/adminMediaUpload.test.js src/utils/adminAssetApiValidation.test.js src/utils/adminPathSecurity.test.js src/components/itinerary/itineraryModel.test.js src/components/home/homepageRefinements.test.js",
"test:e2e": "npm run generate:content && playwright test",
"test:e2e:base-path": "playwright test --config playwright.base-path.config.ts",
"setup:hooks": "git config core.hooksPath .githooks",
"preview": "vite preview",
"lint": "eslint --ext js,jsx,ts,tsx . --report-unused-disable-directives --max-warnings 0 --ignore-pattern dist/ --ignore-pattern 'public/src/**'"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fortawesome/fontawesome-free": "^7.2.0",
"gray-matter": "^4.0.3",
"i18next": "^23.11.5",
"marked": "^12.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.2",
"react-router-dom": "^6.23.1",
"three": "^0.166.1"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.19",
"concurrently": "^9.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"globals": "^17.6.0",
"playwright": "^1.60.0",
"postcss": "^8.5.25",
"tailwindcss": "^3.4.3",
"typescript": "^6.0.3",
"vite": "^5.2.11"
}
}