-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "swift-keys",
"version": "0.1.0",
"private": true,
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"project": "yarn database && wait-on -d 500 tcp:54322 && yarn migrate init && concurrently \"yarn dev\" \"yarn wundergraph\" \"yarn open\" \"yarn server\"",
"dev": "next dev",
"start": "next start",
"build": "next build",
"wundergraph": "wunderctl up --debug",
"generate": "wunderctl generate --debug",
"wunderctl": "wunderctl",
"database": "cd database && docker-compose up -d",
"migrate": "prisma format && prisma migrate dev --name",
"server": "cd server && go run .",
"open": "wait-on http://localhost:3000 && wait-on http://localhost:9991 && wait-on http-get://127.0.0.1:5001/health && open-cli http://localhost:3000",
"prepare": "husky install",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "next lint --fix"
},
"dependencies": {
"@emotion/css": "^11.10.0",
"@headlessui/react": "^1.6.6",
"@wundergraph/nextjs": "^0.1.2",
"@wundergraph/sdk": "^0.102.0",
"date-fns": "^2.29.2",
"graphql": "^16.3.0",
"next": "^12.1.6",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.4.0"
},
"devDependencies": {
"@svgr/webpack": "^6.3.1",
"@types/node": "^18.7.14",
"@types/react": "^18.0.7",
"autoprefixer": "^10.4.8",
"concurrently": "^7.3.0",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"open-cli": "^7.0.1",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.3.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.2",
"wait-on": "^6.0.0"
},
"prisma": {
"schema": "database/schema.prisma"
}
}