-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·49 lines (49 loc) · 1.44 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": "codevideo",
"version": "0.1.0",
"private": true,
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"scripts": {
"start": "concurrently \"npm run nextDev\" \"npm run wundergraph\" \"npm run browser\"",
"database": "cd database && docker-compose up -d && npm run migrate init",
"minio": "cd minio && sh setup.sh",
"wundergraph": "wunderctl up --debug",
"browser": "wait-on \"http-get://localhost:3000\" && wait-on \"http-get://localhost:9991\" && open-cli http://localhost:3000",
"build": "next build",
"nextDev": "next dev",
"nextStart": "next start",
"generate": "wunderctl generate --debug",
"wunderctl": "wunderctl",
"migrate": "cd database && prisma format && prisma migrate dev --name"
},
"dependencies": {
"@emotion/css": "^11.9.0",
"@wundergraph/nextjs": "^0.1.6",
"@wundergraph/sdk": "^0.100.0",
"file-saver": "^2.0.5",
"graphql": "^16.3.0",
"konva": "^8.3.12",
"nanoid": "^4.0.0",
"next": "^12.1.6",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-konva": "^18.2.1",
"react-konva-utils": "^0.3.0",
"recoil": "^0.7.5"
},
"devDependencies": {
"@types/node": "^17.0.27",
"@types/react": "^18.0.7",
"autoprefixer": "^10.4.8",
"concurrently": "^6.0.0",
"open-cli": "^7.0.1",
"postcss": "^8.4.16",
"prisma": "^4.0.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.2",
"wait-on": "^6.0.0"
}
}