-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
20 lines (20 loc) · 997 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "root",
"private": true,
"scripts": {
"build": "npm run build:clean && npm run build:prod",
"build:prod": "NODE_OPTIONS=\"--max-old-space-size=4096\" lerna run build --scope editor --stream && lerna run build --scope web-server --stream && gulp",
"build:server": "NODE_OPTIONS=\"--max-old-space-size=4096\" lerna run build --scope web-server --stream && gulp",
"build:clean": "lerna run build:clean --scope editor && lerna run build:clean --scope web-server && rimraf www",
"generate-templates": "node packages/editor/scripts/generate-templates.js",
"start": "lerna run start --scope editor --stream",
"start:prod": "npm run inject-env-variables && node www/api/app.js",
"lint": "lerna run lint",
"typecheck": "lerna run typecheck --scope editor && lerna run typecheck --scope web-server",
"inject-env-variables": "lerna run inject-env-variables --scope editor"
},
"devDependencies": {
"gulp": "^4.0.0",
"lerna": "^3.13.3"
}
}