summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json10
1 files changed, 4 insertions, 6 deletions
diff --git a/package.json b/package.json
index d805a5fee8..634182f552 100644
--- a/package.json
+++ b/package.json
@@ -11,18 +11,16 @@
"private": true,
"scripts": {
"start": "node ./index.js",
- "start-product": "cross-env NODE_ENV=production node ./index.js",
"init": "npm run migrate",
"ormconfig": "node ./built/ormconfig.js",
"migrate": "ts-node ./node_modules/typeorm/cli.js migration:run",
"migrateandstart": "npm run migrate && npm run start",
- "build": "webpack && gulp build",
- "build-product": "cross-env NODE_ENV=production webpack && gulp build",
- "webpack": "webpack",
+ "build": "npm run build-webpack && npm run build-gulp",
+ "build-webpack": "webpack",
+ "build-gulp": "gulp build",
"watch": "concurrently \"npm:watch-*\"",
"watch-webpack": "webpack --watch",
- "watch-gulp": "gulp --watch",
- "gulp": "gulp build",
+ "watch-gulp": "gulp watch",
"clean": "gulp clean",
"cleanall": "gulp cleanall",
"lint": "tslint 'src/**/*.ts'",