jok
Version:
Bundle of utility functions for code generation related to nodejs and graphql
60 lines (59 loc) • 1.37 kB
JSON
{
"name": "jokio-app",
"version": "0.0.1",
"author": "",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"start": "next start src",
"dev": "nodemon",
"build": "next build src",
"lint": "tslint --project .",
"test": "jest",
"test-ci": "jest --coverage",
"cleanup": "rm -fr dist/",
"prepublishOnly": "npm run build",
"postpack": "npm run cleanup"
},
"dependencies": {
"@zeit/next-typescript": "1.1.1",
"express": "4.16.4",
"next": "7.0.2",
"react": "16.7.0",
"react-dom": "16.7.0"
},
"devDependencies": {
"@types/express": "4.16.0",
"@types/next": "7.0.4",
"@types/jest": "23.3.10",
"@types/node": "10.12.18",
"dotenv": "6.2.0",
"jest": "23.6.0",
"nodemon": "1.18.9",
"ts-jest": "23.10.5",
"ts-node": "8.0.2",
"tslint": "5.12.0",
"typescript": "3.3.3"
},
"resolutions": {
"**/event-stream": "^4.0.1"
},
"repository": {
"type": "git",
"url": ""
},
"publishConfig": {
"access": "public"
},
"keywords": ["jok"],
"license": "MIT",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"]
}
}