Skip to content
This repository has been archived by the owner on Jan 14, 2022. It is now read-only.

Commit

Permalink
Merge pull request #904 from LiskHQ/npm-scipts
Browse files Browse the repository at this point in the history
Npm scipts
  • Loading branch information
Michal Tuleja authored May 17, 2019
2 parents f19287d + e2e062a commit 18619f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ EOF
// steps {
// wrap([$class: 'Xvfb']) {
// nvm(getNodejsVersion()) {
// sh 'npm run e2e -- --params.baseURL http://localhost:$EXPLORER_PORT'
// sh 'npm run test:e2e -- --params.baseURL http://localhost:$EXPLORER_PORT'
// }
// }
// }
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@
"start:testnet": "LISK_HOST=testnet.lisk.io LISK_PORT=7000 node app.js",
"start:mainnet": "LISK_HOST=explorer.lisk.io LISK_PORT=8000 node app.js",
"test": "./node_modules/.bin/grunt test --verbose",
"test:e2e": "protractor protractor.conf.js",
"test-live": "npm test -- --auto-watch --no-single-run",
"pree2e": "./node_modules/protractor/bin/webdriver-manager update --standalone false --gecko false",
"e2e": "protractor protractor.conf.js",
"install:e2e": "./node_modules/protractor/bin/webdriver-manager update --standalone false --gecko false",
"eslint": "eslint ./benchmarks ./utils ./libs ./api ./src ./test ./features ./tasks ./*.js ./*.json",
"eslint-fix": "eslint --fix ./benchmarks ./utils ./libs ./api ./src ./test ./features ./tasks ./*.js",
"watch": "npm run copy-files && DEBUG=true webpack -w",
"validate": "webpack-validator webpack.config.js",
"copy-files": "cp -r ./src/assets/img/favicons/* ./src/assets/img/leaflet ./robots.txt ./public",
"build": "npm run copy-files && webpack",
"build:prod": "webpack --env.prod",
"clean-frontend": "git clean ./public -dfx && git clean ./src -dfx",
"clean-backend": "rm -rf node_modules",
"clean-all": "npm run clean-backend && npm run clean-frontend && git clean ./ -dfnx"
"clean": "npm run clean:backend && npm run clean:frontend && git clean ./ -dfnx",
"clean:frontend": "git clean ./public -dfx && git clean ./src -dfx",
"clean:backend": "rm -rf node_modules"
},
"dependencies": {
"amstock3": "github:amcharts/amstock3",
Expand Down

0 comments on commit 18619f2

Please sign in to comment.