forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.58 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
44
45
46
47
48
49
{
"name": "wundergraph-nextjs-todos",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "npm run start:services && npm run wait-on:services && npm run migrate init && run-p dev wundergraph open",
"start:services": "docker-compose up -d",
"wait-on:services": "wait-on -d 5000 tcp:54322",
"wundergraph": "wunderctl up --logs",
"open": "wait-on -d 500 http://localhost:9991 && open-cli http://localhost:3000",
"seed": "wait-on -d 2000 http://localhost:9991 && ts-node ./seed/seed.ts && npm run open",
"build:wundergraph": "wunderctl generate",
"build:next": "next build",
"build": "npm run build:wundergraph && npm run build:next",
"dev": "next dev",
"migrate": "prisma format && prisma migrate dev --name",
"cleanup": "docker-compose down -v",
"wunderctl": "wunderctl",
"check": "tsc --noEmit"
},
"dependencies": {
"@heroicons/react": "^2.0.13",
"@tailwindcss/forms": "^0.5.3",
"@wundergraph/nextjs": "^0.12.0",
"@wundergraph/sdk": "^0.167.1",
"clsx": "^1.2.1",
"framer-motion": "^7.6.12",
"graphql": "^16.3.0",
"next": "^13.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"swr": "^2.2.0"
},
"devDependencies": {
"@types/node": "^17.0.15",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.6",
"autoprefixer": "^10.4.13",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.1",
"postcss": "^8.4.19",
"prisma": "^4.0.0",
"tailwindcss": "^3.2.4",
"ts-node": "^10.8.0",
"typescript": "^4.8.2",
"wait-on": "^6.0.1"
}
}