-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 647 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "ck-join-flow",
"version": "2.0.0",
"private": true,
"main": "index.js",
"scripts": {
"postinstall": "yarn composer && lerna bootstrap",
"composer": "cd packages/join-block && composer install",
"frontend": "cd packages/join-flow && yarn start",
"start": "docker-compose up -d && lerna run --parallel start",
"build": "lerna run build",
"dist": "lerna run build && scripts/package.sh",
"deploy": "yarn build && sh scripts/deploy.sh",
"prettier": "prettier --write packages/join-flow"
},
"devDependencies": {
"lerna": "^3.22.1",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
}
}