forked from chapter-three/next-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "example-webform",
"version": "1.4.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev -p 3636",
"build": "next build",
"start": "next start",
"preview": "next build && next start -p 3636",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "start-server-and-test 'yarn preview' http://localhost:3636 cy:open",
"test:e2e:ci": "start-server-and-test 'yarn preview' http://localhost:3636 cy:run"
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"next": "^14.2.2",
"next-drupal": "^2.0.0-beta.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"autoprefixer": "^10.4.19",
"eslint-config-next": "^14.2.2",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
}
}