-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.05 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.05 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
{
"name": "nextjs-app",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "hasura migrate apply --database-name postgres --endpoint 'http://localhost:8080'",
"db:metadata:apply": "hasura metadata apply --endpoint 'http://localhost:8080'",
"db:seed": "hasura seed apply --database-name postgres --endpoint 'http://localhost:8080'",
"db:metadata:reload": "hasura metadata reload --endpoint 'http://localhost:8080'",
"bootstrap": "npm run docker:build && npm run db:configure",
"db:configure": "npm run db:metadata:apply && npm run db:migrate && npm run db:metadata:reload && npm run db:seed",
"docker:build": "docker-compose up -d --build"
},
"dependencies": {
"fs": "0.0.1-security",
"graphql": "^16.0.1",
"graphql-request": "^3.6.1",
"next": "12.0.4",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-next": "12.0.4"
}
}