-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.17 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
{
"scripts": {
"contember": "docker-compose run contember-cli",
"start": "npm run start-engine && concurrently npm:start-admin npm:start-head",
"start-engine": "docker-compose up --detach && npm run contember migrations:execute . --yes",
"start-admin": "vite admin --port 1480 --host 0.0.0.0",
"start-head": "next dev head",
"build": "concurrently npm:build-admin npm:build-api npm:build-head",
"build-admin": "tsc --project admin && vite build admin",
"build-api": "tsc --project api",
"build-head": "tsc --project head && next build head",
"deploy": "docker-compose run -e CONTEMBER_TOKEN= contember-cli deploy"
},
"dependencies": {
"next": "^12",
"react": "^17",
"react-dom": "^17"
},
"devDependencies": {
"@contember/admin": "^1.0.0-rc",
"@contember/admin-i18n": "^1.0.0-rc",
"@contember/react-client": "^1.0.0-rc",
"@contember/schema": "^1.0.0-rc",
"@contember/schema-definition": "^1.0.0-rc",
"@picocss/pico": "^1.4.4",
"@types/node": "^16",
"@types/react": "^17",
"concurrently": "^7.0.0",
"eslint": "^8.6",
"eslint-config-next": "^12.0",
"typescript": "^4.5",
"vite": "^2.7"
}
}