UNPKG

@cortical/core

Version:

A RESTful API framework for your apps based on GraphQL type system.

55 lines 1.2 kB
{ "name": "@cortical/sample", "version": "0.0.1", "licence": "MIT", "description": "", "scripts": { "build": "cortical build", "start": "cortical start", "develop": "cortical develop", "test": "jest", "test:coverage": "jest --coverage", "lint": "tslint -t verbose --project .", "precommit": "lint-staged" }, "engines": { "node": ">=6" }, "lint-staged": { "*.{ts,tsx}": [ "prettier-tslint --write", "git add" ] }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "modulePathIgnorePatterns": [ "<rootDir>[/\\\\](dist|node_modules|scripts)[/\\\\]" ], "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ] }, "dependencies": { "@cortical/core": "^0.0.198", "@cortical/types": "^0.0.122", "typescript": "next" }, "devDependencies": { "jest": "^22.4.2", "ts-jest": "^22.4.1", "tslint": "^5.9.1", "prettier-tslint": "^0.3.0", "tslint-config-prettier": "^1.9.0", "tslint-config-airbnb": "^5.7.0", "lint-staged": "^7.0.0" } }