Skip to content
Snippets Groups Projects
package.json 758 B
Newer Older
  • Learn to ignore specific revisions
  • {
        "name": "chip-ahoyto-web",
    
    João Magalhães's avatar
    João Magalhães committed
        "version": "0.2.0",
    
        "description": "The web version of CHIP-Ahoyto",
        "repository": {
            "type": "git",
            "url": "git+https://gitlab.stage.hive.pt/joamag/chip-ahoyto.git"
        },
        "license": "Apache-2.0",
        "scripts": {
    
            "build": "parcel build index.html",
            "dev": "parcel index.html",
    
    João Magalhães's avatar
    João Magalhães committed
            "pretty": "prettier --config .prettierrc \"./**/*.{ts,json}\" --write",
    
            "start": "npm run build",
    
            "watch": "parcel watch index.html"
    
        "source": "index.ts",
    
        "devDependencies": {
    
            "@parcel/transformer-typescript-tsc": "^2.6.1",
            "parcel": "^2.6.1",
    
            "prettier": "^2.7.1",
    
            "tsc-watch": "^5.0.3",
            "typescript": "^4.5.5"
        }
    }