Files
react-navigation/package.json
satyajit.happy 0ff3de1266 refactor: use a class component for the container
With the function component. we have issues with our getState function which doesn't always return latest state.
2019-07-16 12:28:15 +02:00

86 lines
2.3 KiB
JSON

{
"name": "navigation-ex",
"private": true,
"version": "0.0.0",
"description": "Rethinking navigation",
"keywords": [],
"types": "types/index.d.ts",
"main": "lib/index.js",
"files": [
"lib/",
"types/",
"index.d.ts"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/satya164/navigation-ex.git"
},
"author": "Satyajit Sahoo <satyajit.happy@gmail.com> (https://github.com/satya164/)",
"scripts": {
"lint": "eslint .",
"typescript": "tsc --noEmit",
"test": "jest",
"prebuild": "del lib/ types/",
"babel": "babel src --out-dir lib --ignore '**/__tests__/**' --source-maps",
"declarations": "tsc --declaration --emitDeclarationOnly --outDir types",
"build": "yarn babel && yarn declarations",
"example": "parcel example/index.html",
"prepare": "yarn build",
"release": "release-it"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"core-js": "^3.1.3",
"shortid": "^2.2.14"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/config-conventional": "^8.0.0",
"@release-it/conventional-changelog": "^1.1.0",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/shortid": "^0.0.29",
"codecov": "^3.5.0",
"commitlint": "^8.0.0",
"del-cli": "^2.0.0",
"eslint": "^5.16.0",
"eslint-config-satya164": "^2.4.1",
"husky": "^2.4.0",
"jest": "^24.8.0",
"parcel": "^1.12.3",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-native-testing-library": "^1.9.1",
"react-test-renderer": "^16.8.6",
"release-it": "^12.3.0",
"typescript": "^3.5.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript && yarn test"
}
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/types/",
"<rootDir>/lib/"
],
"testRegex": "/__tests__/.*\\.(test|spec)\\.(js|tsx?)$",
"transform": {
"^.+\\.(js|ts|tsx)$": "babel-jest"
}
}
}