client/package.json
author rougeronj
Tue, 22 Sep 2015 15:14:10 +0200
changeset 543 5f7bebdcfc0d
parent 528 468b9176c3f3
child 535 4797b25c5dd1
permissions -rw-r--r--
Improve the way we init the view. The data loader send a "loaded" event, hooked by the scene.py and initializing the backbone.history and the view. We don't use redraw_active in save-once and full-json, because it was making the view initialization dependent of these file which are externals. Small fix to hide the "set saved view" button when there is only one view.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
{
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
  "name": "renkan",
528
468b9176c3f3 increment client version
rougeronj
parents: 522
diff changeset
     3
  "version": "0.12.4",
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
  "description": "Renkan client application",
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
  "repository": {
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
    "type": "hg",
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
    "url": "https://www.iri.centrepompidou.fr/dev/hg/renkan"
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
  },
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
  "devDependencies": {
495
444b80998255 update client version + small correction in dojoConfig to load ckeditor jquery adapter
ymh <ymh.work@gmail.com>
parents: 493
diff changeset
    10
    "bower": "^1.5.2",
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
    "grunt": "^0.4.5",
344
e616c4fff297 start adding bower. remove and forget lib folder. this folder is now managed by grunt
ymh <ymh.work@gmail.com>
parents: 312
diff changeset
    12
    "grunt-bower-task": "^0.4.0",
e616c4fff297 start adding bower. remove and forget lib folder. this folder is now managed by grunt
ymh <ymh.work@gmail.com>
parents: 312
diff changeset
    13
    "grunt-cli": "^0.1.13",
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
    "grunt-contrib-clean": "^0.5.0",
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
    "grunt-contrib-concat": "^0.4.0",
344
e616c4fff297 start adding bower. remove and forget lib folder. this folder is now managed by grunt
ymh <ymh.work@gmail.com>
parents: 312
diff changeset
    16
    "grunt-contrib-connect": "^0.7.1",
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
    "grunt-contrib-copy": "^0.5.0",
344
e616c4fff297 start adding bower. remove and forget lib folder. this folder is now managed by grunt
ymh <ymh.work@gmail.com>
parents: 312
diff changeset
    18
    "grunt-contrib-cssmin": "^0.9.0",
e616c4fff297 start adding bower. remove and forget lib folder. this folder is now managed by grunt
ymh <ymh.work@gmail.com>
parents: 312
diff changeset
    19
    "grunt-contrib-jshint": "^0.10.0",
416
54a9de7e2b45 add grunt JST to compilate the templates
rougeronj
parents: 410
diff changeset
    20
    "grunt-contrib-jst": "^0.6.0",
344
e616c4fff297 start adding bower. remove and forget lib folder. this folder is now managed by grunt
ymh <ymh.work@gmail.com>
parents: 312
diff changeset
    21
    "grunt-contrib-requirejs": "^0.4.4",
e616c4fff297 start adding bower. remove and forget lib folder. this folder is now managed by grunt
ymh <ymh.work@gmail.com>
parents: 312
diff changeset
    22
    "grunt-contrib-uglify": "^0.4.0",
423
4f0b6f345564 add grunt-contrib-watch and a watch task to detect modification of js/css/html and launch the corresping task to build the application again
rougeronj
parents: 416
diff changeset
    23
    "grunt-contrib-watch": "^0.6.1",
500
fb3a062bc720 define grunt task to change version numbers in projects files
ymh <ymh.work@gmail.com>
parents: 497
diff changeset
    24
    "grunt-text-replace": "^0.4.0",
497
3ba7920facf4 Correct dependency and loading problem for ckeditor with dojo
ymh <ymh.work@gmail.com>
parents: 495
diff changeset
    25
    "grunt-umd": "^2.3.3",
344
e616c4fff297 start adding bower. remove and forget lib folder. this folder is now managed by grunt
ymh <ymh.work@gmail.com>
parents: 312
diff changeset
    26
    "jshint-stylish": "^0.2.0"
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
  },
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
  "author": "IRI"
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
}