-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.59 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
{
"name": "@wcpos/wp-admin-landing",
"scripts": {
"dev": "BUILD_TARGET=${BUILD_TARGET:-bootstrap} vite",
"build": "npm run fetch:content || true && BUILD_TARGET=bootstrap vite build && BUILD_TARGET=indie vite build && BUILD_TARGET=free-plus vite build",
"build:bootstrap": "BUILD_TARGET=bootstrap vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"check:assets": "./scripts/check-generated-assets.sh",
"lint:copy": "node scripts/lint-copy.mjs",
"lint:i18n": "node scripts/lint-i18n-keys.mjs",
"lint:snapshots": "node scripts/lint-snapshots.mjs",
"fetch:content": "node scripts/fetch-roadmap.mjs && node scripts/fetch-wporg-reviews.mjs",
"test": "node --test 'tests/*.test.mjs'",
"ci": "npm run test && npm run typecheck && npm run lint:copy && npm run lint:i18n && npm run lint:translations && npm run lint:tw && npm run lint:snapshots && npm run check:assets",
"lint:translations": "node scripts/lint-translations.mjs",
"lint:tw": "node scripts/lint-tailwind-prefix.mjs"
},
"dependencies": {
"i18next": "^26.0.5",
"i18next-chained-backend": "^5.0.3",
"i18next-http-backend": "^3.0.5",
"i18next-localstorage-backend": "^4.3.1",
"posthog-js": "^1.387.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "4.0.10",
"react-i18next": "^17.0.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.4",
"vite": "^6.0.0"
}
}