-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.41 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.41 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
31
32
33
34
35
36
37
38
39
40
41
{
"scripts": {
"contember": "docker-compose run contember-cli",
"start": "npm run start-engine && npm run codegen && concurrently npm:start-admin npm:start-website",
"start-engine": "docker-compose up --detach && npm run contember migrations:execute -- --yes",
"start-admin": "vite admin --port 1480 --host 0.0.0.0",
"start-website": "next dev website",
"build": "concurrently npm:build-admin npm:build-api",
"build-admin": "tsc --project admin && vite build admin",
"build-api": "tsc --project api",
"build-website": "tsc --project website && next build website",
"deploy": "npm run build && docker-compose run contember-cli deploy",
"codegen": "node website/scripts/GraphQLCodeGenerator.mjs"
},
"dependencies": {
"eslint": "^8",
"eslint-config-next": "^13",
"graphql-ts-client-api": "^3",
"next": "^13",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@contember/admin": "1.2.0-rc.2",
"@contember/brand": "1.2.0-rc.2",
"@contember/layout": "1.2.0-rc.2",
"@contember/schema": "1.2.1",
"@contember/schema-definition": "1.2.1",
"@types/node": "^18",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"concurrently": "^8",
"graphql-ts-client-codegen": "^3",
"lucide-react": "^0.244.0",
"postcss": "^8",
"tailwindcss": "^3",
"typescript": "^5.0",
"vite": "^4"
}
}