Skip to content

Commit

Permalink
Merge pull request #6 from nerdeveloper/add/support-windows
Browse files Browse the repository at this point in the history
Add/support windows
  • Loading branch information
nerdeveloper authored Sep 4, 2020
2 parents 1926389 + d885ef0 commit 785a9fc
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 6 deletions.
52 changes: 52 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"scripts": {
"start": "npm run build:dev",
"lint": "./node_modules/.bin/eslint '**/*.ts' --fix --quiet",
"test": "NODE_ENV=development jest --runInBand --forceExit",
"serve:dev": "NODE_ENV=development nodemon dist/server.js --public ",
"docker:serve": "NODE_ENV=development nodemon dist/server.js --public",
"serve:prod": " NODE_ENV=production ./node_modules/.bin/nodemon app/dist/server.js --public",
"test": "cross-env NODE_ENV=development jest --runInBand --forceExit",
"serve:dev": "cross-env NODE_ENV=development nodemon dist/server.js --public ",
"docker:serve": "cross-env NODE_ENV=development nodemon dist/server.js --public",
"serve:prod": "cross-env NODE_ENV=production ./node_modules/.bin/nodemon app/dist/server.js --public",
"watch-node": "./node_modules/.bin/nodemon dist/server.js",
"watch": "concurrently \"npm run bundle:watch \" \"npm run watch-ts:dev \" \"npm run serve:dev \" --names \"💻,📦\" --prefix name",
"watch:serve": " concurrently \"npm run bundle:watch \" \"npm run serve:prod \" \"npm run watch-ts:prod \" --names \"💻,📦\" --prefix name",
Expand All @@ -33,7 +33,6 @@
"author": "Obinna Odirionye",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
Expand Down Expand Up @@ -73,7 +72,6 @@
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@release-it/conventional-changelog": "^1.1.0",
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/connect-ensure-login": "^0.1.5",
"@types/connect-flash": "0.0.35",
Expand Down Expand Up @@ -114,6 +112,7 @@
"babel-plugin-transform-util-promisify": "^0.2.2",
"babel-preset-env": "^1.7.0",
"concurrently": "^4.1.2",
"cross-env": "^7.0.2",
"css-loader": "^3.2.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^5.16.0",
Expand Down

0 comments on commit 785a9fc

Please sign in to comment.