package.json 1.11 KB
Newer Older
Rushikesh Padsala's avatar
Rushikesh Padsala committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
  "name": "building-viewer",
  "version": "1.0.0",
  "description": "This application demonstrates the use of various Building Scene Layer related API",
  "repository": {
    "type": "git",
    "url": "git@transfer.hft-stuttgart.de:rushikesh.padsala/test3.git"
  },
  "scripts": {
    "dev": "tsc -w & sass --watch src:src",
    "lint": "tslint './src/*.ts'",
    "build": "tsc & sass src:src",
    "dist": "grunt dist",
    "server": "grunt"
  },
  "keywords": [
    "esri",
    "typescript"
  ],
  "author": "Yannik Messerli <ymesserli@esri.com>",
  "license": "Apache-2.0",
  "devDependencies": {
    "grunt": "^1.3.0",
    "grunt-contrib-concat": "*",
    "grunt-contrib-connect": "*",
    "grunt-contrib-copy": "*",
    "grunt-contrib-htmlmin": "*",
    "grunt-contrib-uglify": "*",
    "grunt-contrib-watch": "*",
    "grunt-dojo": "^1.1.2",
    "grunt-include-source": "^1.1.0",
    "grunt-run": "^0.8.1",
    "grunt-stripcomments": "^0.7.2",
    "js-yaml": ">=3.13.1",
    "tslint": "^4.2.0",
    "tslib": "~2.4.0",
    "sass": "^1.49.10"
  },
  "dependencies": {
    "@types/dojo": "1.9.41",
    "typescript": "4.2.4"
  }
}