Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
145 lines (145 sloc)
4.1 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "enforted", | |
"description": "A PWA-ready board game built with Aurelia", | |
"version": "0.1.0", | |
"repository": { | |
"type": "git", | |
"url": "https://github.com/zewa666/enforted.git" | |
}, | |
"author": { | |
"email": "zewa666@gmail.com", | |
"name": "Vildan Softic", | |
"url": "https://pragmatic-coder.net" | |
}, | |
"license": "MIT", | |
"husky": { | |
"hooks": { | |
"pre-commit": "npm run lint", | |
"pre-push": "npm run test" | |
} | |
}, | |
"dependencies": { | |
"@auth0/auth0-spa-js": "^1.6.3", | |
"aurelia-animator-css": "^1.0.4", | |
"aurelia-bem": "^0.3.0", | |
"aurelia-bootstrapper": "^2.3.2", | |
"aurelia-dialog": "^2.0.0-rc.8", | |
"aurelia-store": "^1.6.0", | |
"lodash": "^4.17.15", | |
"rxjs": "^6.5.3", | |
"web-animations-js": "^2.3.2" | |
}, | |
"devDependencies": { | |
"@cypress/webpack-preprocessor": "^4.0.3", | |
"@types/jest": "^24.0.9", | |
"@types/lodash": "^4.14.149", | |
"@types/node": "^10.11.6", | |
"@types/puppeteer": "^2.0.1", | |
"@types/web-animations-js": "^2.2.8", | |
"aurelia-cli": "^1.0.2", | |
"aurelia-loader-nodejs": "^1.0.1", | |
"aurelia-pal-nodejs": "^1.2.0", | |
"aurelia-testing": "^1.0.0", | |
"aurelia-tools": "^2.0.0", | |
"browser-sync": "^2.26.3", | |
"connect-history-api-fallback": "^1.6.0", | |
"copyfiles": "^2.1.1", | |
"cross-env": "^7.0.2", | |
"cypress": "^3.2.0", | |
"debounce": "^1.2.0", | |
"gh-pages": "^2.1.1", | |
"gulp": "^4.0.0", | |
"gulp-dart-sass": "^0.9.1", | |
"gulp-plumber": "^1.2.1", | |
"gulp-rename": "^2.0.0", | |
"gulp-sass": "^4.0.2", | |
"gulp-sourcemaps": "^2.6.5", | |
"gulp-stylelint": "^11.0.0", | |
"gulp-tslint": "^8.1.4", | |
"gulp-typescript": "^5.0.0", | |
"gulp-watch": "^5.0.1", | |
"husky": "^4.2.1", | |
"jest": "^24.1.0", | |
"jest-cli": "^24.1.0", | |
"jest-localstorage-mock": "^2.4.0", | |
"jest-transform-stub": "^2.0.0", | |
"minimatch": "^3.0.4", | |
"promise-polyfill": "^8.1.0", | |
"puppeteer": "^2.1.1", | |
"puppeteer-extra": "^3.1.9", | |
"puppeteer-extra-plugin-aurelia-store": "^0.1.1", | |
"requirejs": "^2.3.6", | |
"rimraf": "^3.0.0", | |
"stylelint": "^13.0.0", | |
"stylelint-config-recommended-scss": "^4.1.0", | |
"stylelint-order": "^4.0.0", | |
"stylelint-scss": "^3.13.0", | |
"text": "requirejs/text#latest", | |
"through2": "^3.0.0", | |
"ts-jest": "^24.0.0", | |
"ts-loader": "^6.2.1", | |
"tslint": "^5.13.0", | |
"typescript": "^3.7.5", | |
"vinyl-fs": "^3.0.3", | |
"webpack": "^4.27.0" | |
}, | |
"scripts": { | |
"build": "au build", | |
"start": "au run", | |
"test": "au test", | |
"tdd": "au test --watch", | |
"lint": "au lint", | |
"e2e": "au cypress", | |
"deploy": "rimraf dist && au build && copyfiles sw.js manifest.json assets/**/**/* assets/**/* assets/*.png scripts/**/* index.html dist && gh-pages -d dist", | |
"e2e:headless": "au cypress --start --run", | |
"docker:build": "docker build -t enforted:0.1.0 -t enforted:latest .", | |
"docker:start": "docker-compose up -d", | |
"docker:stop": "docker-compose down", | |
"puppeteer": "jest --config=test/jest-puppeteer.conf.json", | |
"puppeteer-headless": "cross-env HEADLESS=true jest --config=test/jest-puppeteer.conf.json" | |
}, | |
"engines": { | |
"node": ">=8.9.0" | |
}, | |
"jest": { | |
"moduleNameMapper": { | |
"^aurelia-binding$": "<rootDir>/node_modules/aurelia-binding", | |
"^.+\\.css$": "<rootDir>/test/mock-css" | |
}, | |
"modulePaths": [ | |
"<rootDir>/src", | |
"<rootDir>/node_modules" | |
], | |
"moduleFileExtensions": [ | |
"ts", | |
"js", | |
"json" | |
], | |
"transform": { | |
"^.+\\.(css|less|sass|scss|styl|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "jest-transform-stub", | |
"^.+\\.ts$": "ts-jest" | |
}, | |
"testMatch": [ | |
"<rootDir>/test/unit/**/*.spec.ts" | |
], | |
"setupFiles": [ | |
"<rootDir>/test/jest-pretest.ts", | |
"jest-localstorage-mock" | |
], | |
"testEnvironment": "node", | |
"collectCoverage": true, | |
"collectCoverageFrom": [ | |
"src/**/*.{js,ts}", | |
"!**/*.spec.{js,ts}", | |
"!**/node_modules/**", | |
"!**/test/**" | |
], | |
"coverageDirectory": "<rootDir>/test/coverage-jest", | |
"coverageReporters": [ | |
"json", | |
"lcov", | |
"text", | |
"html" | |
] | |
} | |
} |