Changeset 49532 for branches/4.7/package.json
- Timestamp:
- 11/06/2020 05:37:22 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7/package.json
r49417 r49532 14 14 "devDependencies": { 15 15 "autoprefixer": "^6.5.1", 16 "dotenv": "^8.2.0", 17 "dotenv-expand": "^5.1.0", 16 18 "grunt": "~0.4.5", 17 19 "grunt-browserify": "~5.0.0", 20 "grunt-cli": "0.1.13", 18 21 "grunt-contrib-clean": "~1.0.0", 19 22 "grunt-contrib-compress": "~1.3.0", … … 33 36 "grunt-rtlcss": "~2.0.1", 34 37 "grunt-sass": "~1.2.1", 35 "matchdep": "~1.0.0" 38 "matchdep": "~1.0.0", 39 "wait-on": "~3.2.0" 40 }, 41 "scripts": { 42 "build": "grunt build", 43 "build:dev": "grunt build --dev", 44 "dev": "grunt watch --dev", 45 "test": "grunt test", 46 "watch": "grunt watch", 47 "grunt": "grunt", 48 "env:start": "node ./tools/local-env/scripts/start.js", 49 "env:stop": "node ./tools/local-env/scripts/docker.js down", 50 "env:restart": "npm run env:stop && npm run env:start", 51 "env:clean": "node ./tools/local-env/scripts/docker.js down -v --remove-orphans", 52 "env:reset": "node ./tools/local-env/scripts/docker.js down --rmi all -v --remove-orphans", 53 "env:install": "node ./tools/local-env/scripts/install.js", 54 "env:cli": "node ./tools/local-env/scripts/docker.js run cli", 55 "env:logs": "node ./tools/local-env/scripts/docker.js logs", 56 "env:pull": "node ./tools/local-env/scripts/docker.js pull", 57 "test:php": "node ./tools/local-env/scripts/docker.js run --rm phpunit phpunit" 36 58 } 37 59 }
Note: See TracChangeset
for help on using the changeset viewer.