-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.28 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
{
"name": "@diplodoc/www-quickstart",
"version": "1.1.0",
"description": "",
"type": "module",
"main": "server/index.js",
"exports": {
".": "./server/index.js"
},
"scripts": {
"start": "npm run start -w server",
"build:client": "npm run build -w client",
"dev": "run-p dev:* -l ",
"dev:proxy": "npm start -w proxy",
"dev:client": "npm run dev -w client",
"dev:server": "npm run dev -w server",
"secrets": "npm run secrets --workspaces --if-present",
"prepublishOnly": "npm run clean --workspaces --if-present && npm run build --workspaces --if-present",
"docker:build": "docker build . --build-arg NODE_OPTIONS=${NODE_OPTIONS} --build-arg s3_access_key_id=${FRONTEND_S3_ACCESS_KEY_ID} --build-arg s3_secret_access_key=${FRONTEND_S3_SECRET_ACCESS_KEY} -t registry.yandex.net/data-ui/diplodoc-www:quickstart-${targetRevision}",
"docker:push": "docker push registry.yandex.net/data-ui/diplodoc-www:quickstart-${targetRevision}",
"docker:release": "ya tool dctl release docker -t quickstart-${targetRevision} data-ui/diplodoc-www",
"docker:get-tag": "echo quickstart-${targetRevision}"
},
"author": "",
"license": "ISC",
"workspaces": [
"server",
"client",
"proxy"
],
"dependencies": {
"npm-run-all": "^4.1.5"
}
}