-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.43 KB
/
package.json
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
{
"name": "nextjs-rest-to-graphql-adapter-page-router",
"version": "1.1.1",
"private": true,
"scripts": {
"all": "concurrently \"npm run server\" \"npm run dev\"",
"prod": "concurrently \"npm run server\" \"npm run start\"",
"dev": "next dev --turbo",
"build": "next build",
"build-standalone-win": "next build && @powershell copy .next/static .next/standalone/.next/static -recurse -force",
"build-standalone-unix": "next build && cp -r -f .next/static .next/standalone/.next/static",
"start": "next start",
"lint": "next lint",
"server": "json-server ./public/employees.json -p 4000",
"standalone": "node --dns-result-order=ipv4first .next/standalone/server.js"
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@apollo/server": "^4.11.0",
"@as-integrations/next": "^3.1.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.1.4",
"apollo-link-rest": "^0.9.0",
"apollo-server-core": "^3.13.0",
"concurrently": "^9.0.1",
"graphql": "^16.9.0",
"json-server": "^1.0.0-beta.3",
"next": "^15.0.1",
"qs": "^6.13.0",
"react": "^19.0.0-rc-45804af1-20241021",
"react-dom": "^19.0.0-rc-45804af1-20241021"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "^15.0.0-rc.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}