This repository was archived by the owner on Apr 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.71 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
57
{
"name": "@pantheon-systems/next-drupal-starter",
"version": "0.1.0",
"private": true,
"license": "GPL-3.0-or-later",
"description": "",
"homepage": "",
"bugs": "",
"repository": "",
"author": "",
"engines": {
"node": "18"
},
"scripts": {
"dev": "next dev",
"build": "npm run decoupled-kit-health-check && next build && cp -r .next/static .next/standalone/.next && cp -r public .next/standalone",
"start": "node .next/standalone/server.js",
"build:mono": "next build",
"start:mono": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix && npm run prettier:fix",
"prettier": "prettier '**/*.{js,jsx,md}' --check --ignore-path .prettierignore",
"prettier:fix": "prettier '**/*.{js,jsx,,md}' --write --ignore-path .prettierignore",
"test": "vitest run",
"update-snapshots": "vitest run --update --silent",
"coverage": "vitest run --coverage",
"decoupled-kit-health-check": "npx --prefer-offline @pantheon-systems/decoupled-kit-health-check drupal"
},
"dependencies": {
"@pantheon-systems/drupal-kit": "4.6.5",
"@pantheon-systems/nextjs-kit": "1.7.10",
"@tailwindcss/typography": "^0.5.7",
"dotenv": "^16.0.2",
"next": "13.5.6",
"next-seo": "^6.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.32.6"
},
"devDependencies": {
"@pantheon-systems/decoupled-kit-health-check": "0.2.4",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.30",
"tailwindcss": "^3.3.3",
"@testing-library/react": "14.0.0",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-v8": "^0.34.5",
"eslint": "^8.24.0",
"eslint-config-next": "13.4.7",
"jsdom": "^22.1.0",
"msw": "^1.0.0",
"prettier": "^3.0.3",
"typescript": "5.2.2",
"vite": "^4.0.4",
"vitest": "^0.34.5"
}
}