Skip to content

Instantly share code, notes, and snippets.

@gutchom
Created July 22, 2019 16:21
Show Gist options
  • Save gutchom/a42bf599642b4b4eec9a3538dae6ef9e to your computer and use it in GitHub Desktop.
Save gutchom/a42bf599642b4b4eec9a3538dae6ef9e to your computer and use it in GitHub Desktop.
{
"name": "care-me-followers",
"version": "1.0.0",
"description": "Health condition dashboard",
"main": "index.js",
"author": "gutchom",
"license": "MIT",
"homepage": "https://github.com/gutchom/care-me-followers#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gutchom/care-me-followers.git"
},
"bugs": {
"url": "https://github.com/gutchom/care-me-followers/issues"
},
"engines": {
"node": "^12.4.0",
"npm": "^6.9.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development run-p -s count dev:**",
"test": "cross-env NODE_ENV=test ts-jest",
"testing": "npm t -- --watch",
"lint": "run-s lint:*",
"lint:css": "stylelint './src/components/**/*.ts' --fix",
"lint:js": "tslint -p tsconfig.json --fix ./src/**/*.ts*",
"dev:js": "webpack --mode=development --progress --watch",
"dev:server:mock": "cross-env PORT=3000 nodemon -w ./server ./server",
"dev:server:sync": "browser-sync start -b 'google chrome' -f ./public -p localhost:3000 --port 3333",
"build": "cross-env NODE_ENV=production run-s lint test clean build:**",
"build:js": "webpack --mode=production --progress",
"build:img": "cp ./src/images/**/* ./public/img",
"clean": "rm -rf ./public/* && mkdir ./public/js ./public/img",
"count": "printf '\\e[36m\n This project has\\e[35m %s lines\\e[36m of source code!\n\n\\e[m' $(find ./src -name '*.ts*' -o -name '*.css' | xargs wc -l | tail -1 | awk '{print $1}')",
"check": "npm-check -u"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.5",
"@types/enzyme": "^3.9.4",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"@types/power-assert": "^1.5.0",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.16",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.4",
"babel-preset-power-assert": "^3.0.0",
"body-parser": "^1.19.0",
"browser-sync": "^2.26.7",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"colors": "^1.3.3",
"cross-env": "^5.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.16.0",
"express": "^4.17.1",
"git-pre-push": "0.0.5",
"glob": "^7.1.4",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"npm-check": "^5.9.0",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"pre-commit": "^1.2.2",
"react-test-renderer": "^16.8.6",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
},
"pre-commit": [
"lint"
],
"pre-push": [
"test"
],
"stylelint": {
"processors": [
"stylelint-processor-styled-components"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-styled-components"
],
"syntax": "scss"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"env": {
"test": {
"presets": [
"@babel/typescript",
"power-assert"
]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment